mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 18:05:37 +00:00
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:
parent
1882ecba12
commit
b8b5a842c1
3 changed files with 8 additions and 2 deletions
|
@ -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>
|
2008-09-30 Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
|
||||||
|
|
||||||
* ext/libmms/gstmms.c (plugin_init):
|
* ext/libmms/gstmms.c (plugin_init):
|
||||||
|
|
|
@ -132,7 +132,7 @@ class AudioFakeSink : public CBaseRenderer
|
||||||
public:
|
public:
|
||||||
AudioFakeSink(GstDshowAudioDec *dec) :
|
AudioFakeSink(GstDshowAudioDec *dec) :
|
||||||
m_hres(S_OK),
|
m_hres(S_OK),
|
||||||
CBaseRenderer(CLSID_AudioFakeSink, L"AudioFakeSink", NULL, &m_hres),
|
CBaseRenderer(CLSID_AudioFakeSink, _T("AudioFakeSink"), NULL, &m_hres),
|
||||||
mDec(dec)
|
mDec(dec)
|
||||||
{};
|
{};
|
||||||
virtual ~AudioFakeSink() {};
|
virtual ~AudioFakeSink() {};
|
||||||
|
|
|
@ -131,7 +131,7 @@ class VideoFakeSink : public CBaseRenderer
|
||||||
public:
|
public:
|
||||||
VideoFakeSink(GstDshowVideoDec *dec) :
|
VideoFakeSink(GstDshowVideoDec *dec) :
|
||||||
m_hres(S_OK),
|
m_hres(S_OK),
|
||||||
CBaseRenderer(CLSID_VideoFakeSink, L"VideoFakeSink", NULL, &m_hres),
|
CBaseRenderer(CLSID_VideoFakeSink, _T("VideoFakeSink"), NULL, &m_hres),
|
||||||
mDec(dec)
|
mDec(dec)
|
||||||
{};
|
{};
|
||||||
virtual ~VideoFakeSink() {};
|
virtual ~VideoFakeSink() {};
|
||||||
|
|
Loading…
Reference in a new issue