sys/dshowdecwrapper/: Use the _T() macro to support both Unicode and MBCS.

Original commit message from CVS:
* sys/dshowdecwrapper/gstdshowaudiodec.h (AudioFakeSink.AudioFakeSink):
* sys/dshowdecwrapper/gstdshowvideodec.h (VideoFakeSink.VideoFakeSink):
Use the _T() macro to support both Unicode and MBCS.
This commit is contained in:
Ole André Vadla Ravnås 2008-09-30 10:22:10 +00:00
parent 1882ecba12
commit b8b5a842c1
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2008-09-30 Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
* sys/dshowdecwrapper/gstdshowaudiodec.h (AudioFakeSink.AudioFakeSink):
* sys/dshowdecwrapper/gstdshowvideodec.h (VideoFakeSink.VideoFakeSink):
Use the _T() macro to support both Unicode and MBCS.
2008-09-30 Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
* ext/libmms/gstmms.c (plugin_init):

View file

@ -132,7 +132,7 @@ class AudioFakeSink : public CBaseRenderer
public:
AudioFakeSink(GstDshowAudioDec *dec) :
m_hres(S_OK),
CBaseRenderer(CLSID_AudioFakeSink, L"AudioFakeSink", NULL, &m_hres),
CBaseRenderer(CLSID_AudioFakeSink, _T("AudioFakeSink"), NULL, &m_hres),
mDec(dec)
{};
virtual ~AudioFakeSink() {};

View file

@ -131,7 +131,7 @@ class VideoFakeSink : public CBaseRenderer
public:
VideoFakeSink(GstDshowVideoDec *dec) :
m_hres(S_OK),
CBaseRenderer(CLSID_VideoFakeSink, L"VideoFakeSink", NULL, &m_hres),
CBaseRenderer(CLSID_VideoFakeSink, _T("VideoFakeSink"), NULL, &m_hres),
mDec(dec)
{};
virtual ~VideoFakeSink() {};