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/8svx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/8svx.c') diff --git a/libavcodec/8svx.c b/libavcodec/8svx.c index cdbd6b791f..660f00ccf8 100644 --- a/libavcodec/8svx.c +++ b/libavcodec/8svx.c @@ -96,7 +96,7 @@ AVCodec eightsvx_fib_decoder = { .priv_data_size = sizeof (EightSvxContext), .init = eightsvx_decode_init, .decode = eightsvx_decode_frame, - .long_name = "8SVX fibonacci", + .long_name = NULL_IF_CONFIG_SMALL("8SVX fibonacci"), }; AVCodec eightsvx_exp_decoder = { @@ -106,5 +106,5 @@ AVCodec eightsvx_exp_decoder = { .priv_data_size = sizeof (EightSvxContext), .init = eightsvx_decode_init, .decode = eightsvx_decode_frame, - .long_name = "8SVX exponential", + .long_name = NULL_IF_CONFIG_SMALL("8SVX exponential"), }; -- cgit v1.2.3