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/libgsm.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/libgsm.c')
-rw-r--r-- | libavcodec/libgsm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c index 91b956fd4c..ef2f5e759a 100644 --- a/libavcodec/libgsm.c +++ b/libavcodec/libgsm.c @@ -117,7 +117,7 @@ AVCodec libgsm_encoder = { libgsm_init, libgsm_encode_frame, libgsm_close, - .long_name = "libgsm GSM", + .long_name = NULL_IF_CONFIG_SMALL("libgsm GSM"), }; AVCodec libgsm_ms_encoder = { @@ -128,7 +128,7 @@ AVCodec libgsm_ms_encoder = { libgsm_init, libgsm_encode_frame, libgsm_close, - .long_name = "libgsm GSM Microsoft variant", + .long_name = NULL_IF_CONFIG_SMALL("libgsm GSM Microsoft variant"), }; static int libgsm_decode_frame(AVCodecContext *avctx, @@ -158,7 +158,7 @@ AVCodec libgsm_decoder = { NULL, libgsm_close, libgsm_decode_frame, - .long_name = "libgsm GSM", + .long_name = NULL_IF_CONFIG_SMALL("libgsm GSM"), }; AVCodec libgsm_ms_decoder = { @@ -170,5 +170,5 @@ AVCodec libgsm_ms_decoder = { NULL, libgsm_close, libgsm_decode_frame, - .long_name = "libgsm GSM Microsoft variant", + .long_name = NULL_IF_CONFIG_SMALL("libgsm GSM Microsoft variant"), }; |