Commit e12376a1 authored by Thomas Guillem's avatar Thomas Guillem

mediacodec: specify NDK or JNI in description

parent 71daa94b
...@@ -192,7 +192,7 @@ static int InsertInflightPicture(decoder_t *, picture_t *, unsigned int ); ...@@ -192,7 +192,7 @@ static int InsertInflightPicture(decoder_t *, picture_t *, unsigned int );
#define CFG_PREFIX "mediacodec-" #define CFG_PREFIX "mediacodec-"
vlc_module_begin () vlc_module_begin ()
set_description( N_("Video decoder using Android MediaCodec") ) set_description( N_("Video decoder using Android MediaCodec via NDK") )
set_category( CAT_INPUT ) set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_VCODEC ) set_subcategory( SUBCAT_INPUT_VCODEC )
set_section( N_("Decoding") , NULL ) set_section( N_("Decoding") , NULL )
...@@ -202,6 +202,7 @@ vlc_module_begin () ...@@ -202,6 +202,7 @@ vlc_module_begin ()
set_callbacks( OpenDecoderNdk, CloseDecoder ) set_callbacks( OpenDecoderNdk, CloseDecoder )
add_shortcut( "mediacodec_ndk" ) add_shortcut( "mediacodec_ndk" )
add_submodule () add_submodule ()
set_description( N_("Video decoder using Android MediaCodec via JNI") )
set_capability( "decoder", 0 ) set_capability( "decoder", 0 )
set_callbacks( OpenDecoderJni, CloseDecoder ) set_callbacks( OpenDecoderJni, CloseDecoder )
add_shortcut( "mediacodec_jni" ) add_shortcut( "mediacodec_jni" )
......
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