From fe4bf37455e81ecf2c0b769c979bdf6eec785602 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 12 Jun 2008 21:50:13 +0000 Subject: Make AVCodec long_names definition conditional depending on CONFIG_SMALL. Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/libgsm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/libgsm.c') 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"), }; -- cgit v1.2.3