[vlc-commits] DMO: use VLC_CODEC_*
Jean-Baptiste Kempf
git at videolan.org
Mon Jun 25 00:01:40 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Jun 24 23:47:02 2012 +0200| [e40279d39ac504caeeba52736cf2786a9d741341] | committer: Jean-Baptiste Kempf
DMO: use VLC_CODEC_*
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e40279d39ac504caeeba52736cf2786a9d741341
---
modules/codec/dmo/dmo.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/codec/dmo/dmo.c b/modules/codec/dmo/dmo.c
index dcc2b5f..c4365e0 100644
--- a/modules/codec/dmo/dmo.c
+++ b/modules/codec/dmo/dmo.c
@@ -194,10 +194,10 @@ static const codec_dll decoders_table[] =
/* WMV1 */
{ VLC_CODEC_WMV1, "wmvdmod.dll", &guid_wmv },
/* Screen codecs */
- { VLC_FOURCC('M','S','S','2'), "wmsdmod.dll", &guid_wms },
- { VLC_FOURCC('m','s','s','2'), "wmsdmod.dll", &guid_wms },
- { VLC_FOURCC('M','S','S','1'), "wmsdmod.dll", &guid_wms },
- { VLC_FOURCC('m','s','s','1'), "wmsdmod.dll", &guid_wms },
+ { VLC_CODEC_MSS2, "wmsdmod.dll", &guid_wms },
+ { VLC_CODEC_MSS2, "wmsdmod.dll", &guid_wms },
+ { VLC_CODEC_MSS1, "wmsdmod.dll", &guid_wms },
+ { VLC_CODEC_MSS1, "wmsdmod.dll", &guid_wms },
/* Windows Media Video Adv */
{ VLC_CODEC_WMVA, "wmvadvd.dll", &guid_wmva },
More information about the vlc-commits
mailing list