]> git.sesse.net Git - vlc/commitdiff
* modules/codec/mpeg_audio.c: let ffmpeg have the priority under WinCE.
authorGildas Bazin <gbazin@videolan.org>
Sun, 20 Feb 2005 21:38:36 +0000 (21:38 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 20 Feb 2005 21:38:36 +0000 (21:38 +0000)
modules/codec/mpeg_audio.c

index 045519cb9d11088a1335d624d7743afe1c230b13..2a1d1a1fcd6fa5789565e8a2d457ed912ee4a167 100644 (file)
@@ -106,8 +106,8 @@ vlc_module_begin();
     set_description( _("MPEG audio layer I/II/III parser") );
     set_category( CAT_INPUT );
     set_subcategory( SUBCAT_INPUT_ACODEC );
-#if defined(SYS_DARWIN)
-    set_capability( "decoder", 5 );
+#if defined(SYS_DARWIN) || defined(UNDER_CE)
+   set_capability( "decoder", 5 );
 #else
     set_capability( "decoder", 100 );
 #endif