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/asv1.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/asv1.c') diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c index bed7e75f54..7bf93fbf38 100644 --- a/libavcodec/asv1.c +++ b/libavcodec/asv1.c @@ -615,7 +615,7 @@ AVCodec asv1_decoder = { decode_end, decode_frame, CODEC_CAP_DR1, - .long_name= "ASUS V1", + .long_name= NULL_IF_CONFIG_SMALL("ASUS V1"), }; AVCodec asv2_decoder = { @@ -628,7 +628,7 @@ AVCodec asv2_decoder = { decode_end, decode_frame, CODEC_CAP_DR1, - .long_name= "ASUS V2", + .long_name= NULL_IF_CONFIG_SMALL("ASUS V2"), }; #ifdef CONFIG_ENCODERS @@ -642,7 +642,7 @@ AVCodec asv1_encoder = { encode_frame, //encode_end, .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE}, - .long_name= "ASUS V1", + .long_name= NULL_IF_CONFIG_SMALL("ASUS V1"), }; AVCodec asv2_encoder = { @@ -654,7 +654,7 @@ AVCodec asv2_encoder = { encode_frame, //encode_end, .pix_fmts= (enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE}, - .long_name= "ASUS V2", + .long_name= NULL_IF_CONFIG_SMALL("ASUS V2"), }; #endif //CONFIG_ENCODERS -- cgit v1.2.3