diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | sys/dshowdecwrapper/gstdshowaudiodec.h | 2 | ||||
-rw-r--r-- | sys/dshowdecwrapper/gstdshowvideodec.h | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ 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): Fix return type of the GstURIHandler::get_type() implementation. diff --git a/sys/dshowdecwrapper/gstdshowaudiodec.h b/sys/dshowdecwrapper/gstdshowaudiodec.h index 37f16070..77d78919 100644 --- a/sys/dshowdecwrapper/gstdshowaudiodec.h +++ b/sys/dshowdecwrapper/gstdshowaudiodec.h @@ -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() {}; diff --git a/sys/dshowdecwrapper/gstdshowvideodec.h b/sys/dshowdecwrapper/gstdshowvideodec.h index 66bb002f..1995e49c 100644 --- a/sys/dshowdecwrapper/gstdshowvideodec.h +++ b/sys/dshowdecwrapper/gstdshowvideodec.h @@ -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() {}; |