diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-04-27 22:39:51 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-04-27 22:39:51 +0000 |
commit | 162d4fc99d07fcd3322aee9bcc99f045463da2b7 (patch) | |
tree | 2b5428bd7f99a9b0224aa8038af60c889d045398 /libavcodec/mpegaudiodec.c | |
parent | 99e3913d39787f7a88ca70a9b0504d586a20b3fe (diff) | |
download | ffmpeg-162d4fc99d07fcd3322aee9bcc99f045463da2b7.tar.gz |
Add long names to AVCodec declarations.
patch by Stefano Sabatini, stefano.sabatini-lala poste it
Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-rw-r--r-- | libavcodec/mpegaudiodec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index 9b22014c7c..c4805be931 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -2640,6 +2640,7 @@ AVCodec mp2_decoder = decode_frame, CODEC_CAP_PARSE_ONLY, .flush= flush, + .long_name= "MP2 (MPEG audio layer 2)", }; #endif #ifdef CONFIG_MP3_DECODER @@ -2655,6 +2656,7 @@ AVCodec mp3_decoder = decode_frame, CODEC_CAP_PARSE_ONLY, .flush= flush, + .long_name= "MP3 (MPEG audio layer 3)", }; #endif #ifdef CONFIG_MP3ADU_DECODER @@ -2670,6 +2672,7 @@ AVCodec mp3adu_decoder = decode_frame_adu, CODEC_CAP_PARSE_ONLY, .flush= flush, + .long_name= "ADU (Application Data Unit) MP3 (MPEG audio layer 3)", }; #endif #ifdef CONFIG_MP3ON4_DECODER @@ -2684,5 +2687,6 @@ AVCodec mp3on4_decoder = decode_close_mp3on4, decode_frame_mp3on4, .flush= flush, + .long_name= "MP3onMP4", }; #endif |