comparison ac3dec.c @ 7040:e943e1409077 libavcodec

Make AVCodec long_names definition conditional depending on CONFIG_SMALL.
author stefano
date Thu, 12 Jun 2008 21:50:13 +0000
parents f90b89217cc9
children b5dacf4fc65b
comparison
equal deleted inserted replaced
7039:b252326ba895 7040:e943e1409077
1196 .id = CODEC_ID_AC3, 1196 .id = CODEC_ID_AC3,
1197 .priv_data_size = sizeof (AC3DecodeContext), 1197 .priv_data_size = sizeof (AC3DecodeContext),
1198 .init = ac3_decode_init, 1198 .init = ac3_decode_init,
1199 .close = ac3_decode_end, 1199 .close = ac3_decode_end,
1200 .decode = ac3_decode_frame, 1200 .decode = ac3_decode_frame,
1201 .long_name = "ATSC A/52 / AC-3", 1201 .long_name = NULL_IF_CONFIG_SMALL("ATSC A/52 / AC-3"),
1202 }; 1202 };