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/libamr.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/libamr.c')
-rw-r--r-- | libavcodec/libamr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/libamr.c b/libavcodec/libamr.c index 4a73ee08c7..0e23de14b1 100644 --- a/libavcodec/libamr.c +++ b/libavcodec/libamr.c @@ -503,7 +503,7 @@ AVCodec libamr_nb_decoder = NULL, amr_nb_decode_close, amr_nb_decode_frame, - .long_name = "libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band", + .long_name = NULL_IF_CONFIG_SMALL("libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band"), }; AVCodec libamr_nb_encoder = @@ -516,7 +516,7 @@ AVCodec libamr_nb_encoder = amr_nb_encode_frame, amr_nb_encode_close, NULL, - .long_name = "libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band", + .long_name = NULL_IF_CONFIG_SMALL("libamr-nb Adaptive Multi-Rate (AMR) Narrow-Band"), }; #endif @@ -697,7 +697,7 @@ AVCodec libamr_wb_decoder = NULL, amr_wb_decode_close, amr_wb_decode_frame, - .long_name = "libamr-wb Adaptive Multi-Rate (AMR) Wide-Band", + .long_name = NULL_IF_CONFIG_SMALL("libamr-wb Adaptive Multi-Rate (AMR) Wide-Band"), }; AVCodec libamr_wb_encoder = @@ -710,7 +710,7 @@ AVCodec libamr_wb_encoder = amr_wb_encode_frame, amr_wb_encode_close, NULL, - .long_name = "libamr-wb Adaptive Multi-Rate (AMR) Wide-Band", + .long_name = NULL_IF_CONFIG_SMALL("libamr-wb Adaptive Multi-Rate (AMR) Wide-Band"), }; #endif //CONFIG_LIBAMR_WB |