diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-06-12 21:50:13 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-06-12 21:50:13 +0000 |
commit | fe4bf37455e81ecf2c0b769c979bdf6eec785602 (patch) | |
tree | a12f7782e43db4c9703cce6d8c304dfb7c2c638c /libavcodec/mpegaudiodec.c | |
parent | d18811bbf541cc55ac2e36bc34c7c2f541a388cb (diff) | |
download | ffmpeg-fe4bf37455e81ecf2c0b769c979bdf6eec785602.tar.gz |
Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudiodec.c')
-rw-r--r-- | libavcodec/mpegaudiodec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/mpegaudiodec.c b/libavcodec/mpegaudiodec.c index c4805be931..43d70f1dbd 100644 --- a/libavcodec/mpegaudiodec.c +++ b/libavcodec/mpegaudiodec.c @@ -2640,7 +2640,7 @@ AVCodec mp2_decoder = decode_frame, CODEC_CAP_PARSE_ONLY, .flush= flush, - .long_name= "MP2 (MPEG audio layer 2)", + .long_name= NULL_IF_CONFIG_SMALL("MP2 (MPEG audio layer 2)"), }; #endif #ifdef CONFIG_MP3_DECODER @@ -2656,7 +2656,7 @@ AVCodec mp3_decoder = decode_frame, CODEC_CAP_PARSE_ONLY, .flush= flush, - .long_name= "MP3 (MPEG audio layer 3)", + .long_name= NULL_IF_CONFIG_SMALL("MP3 (MPEG audio layer 3)"), }; #endif #ifdef CONFIG_MP3ADU_DECODER @@ -2672,7 +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)", + .long_name= NULL_IF_CONFIG_SMALL("ADU (Application Data Unit) MP3 (MPEG audio layer 3)"), }; #endif #ifdef CONFIG_MP3ON4_DECODER @@ -2687,6 +2687,6 @@ AVCodec mp3on4_decoder = decode_close_mp3on4, decode_frame_mp3on4, .flush= flush, - .long_name= "MP3onMP4", + .long_name= NULL_IF_CONFIG_SMALL("MP3onMP4"), }; #endif |