Commit 67242bac authored by Laurent Aimar's avatar Laurent Aimar

Decrease fixed point decoder priority to lower than ffmpeg.

parent 565bb4ca
...@@ -64,7 +64,7 @@ vlc_module_begin(); ...@@ -64,7 +64,7 @@ vlc_module_begin();
set_category( CAT_INPUT ); set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_ACODEC ); set_subcategory( SUBCAT_INPUT_ACODEC );
set_description( _("MP3 fixed point audio encoder") ); set_description( _("MP3 fixed point audio encoder") );
set_capability( "encoder", 101 ); set_capability( "encoder", 50 );
set_callbacks( OpenEncoder, CloseEncoder ); set_callbacks( OpenEncoder, CloseEncoder );
vlc_module_end(); vlc_module_end();
......
...@@ -81,7 +81,7 @@ vlc_module_begin(); ...@@ -81,7 +81,7 @@ vlc_module_begin();
set_category( CAT_INPUT ); set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_ACODEC ); set_subcategory( SUBCAT_INPUT_ACODEC );
set_description( _("WMA v1/v2 fixed point audio decoder") ); set_description( _("WMA v1/v2 fixed point audio decoder") );
set_capability( "decoder", 100 ); set_capability( "decoder", 50 );
set_callbacks( OpenDecoder, CloseDecoder ); set_callbacks( OpenDecoder, CloseDecoder );
vlc_module_end(); vlc_module_end();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment