00001 #pragma once 00002 00003 class CMediaTypeEx : public CMediaType 00004 { 00005 public: 00006 CMediaTypeEx(); 00007 CMediaTypeEx(const CMediaType& mt) {CMediaType::operator = (mt);} 00008 00009 CString ToString(IPin* pPin = NULL); 00010 00011 static CString GetVideoCodecName(const GUID& subtype, DWORD biCompression); 00012 static CString GetAudioCodecName(const GUID& subtype, WORD wFormatTag); 00013 static CString GetSubtitleCodecName(const GUID& subtype); 00014 };