comparison sp5xdec.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 a4104482ceef
children e9d9d946f213
comparison
equal deleted inserted replaced
7039:b252326ba895 7040:e943e1409077
197 NULL, 197 NULL,
198 ff_mjpeg_decode_end, 198 ff_mjpeg_decode_end,
199 sp5x_decode_frame, 199 sp5x_decode_frame,
200 CODEC_CAP_DR1, 200 CODEC_CAP_DR1,
201 NULL, 201 NULL,
202 .long_name = "Sunplus JPEG (SP5X)" 202 .long_name = NULL_IF_CONFIG_SMALL("Sunplus JPEG (SP5X)"),
203 }; 203 };
204 204
205 AVCodec amv_decoder = { 205 AVCodec amv_decoder = {
206 "amv", 206 "amv",
207 CODEC_TYPE_VIDEO, 207 CODEC_TYPE_VIDEO,
209 sizeof(MJpegDecodeContext), 209 sizeof(MJpegDecodeContext),
210 ff_mjpeg_decode_init, 210 ff_mjpeg_decode_init,
211 NULL, 211 NULL,
212 ff_mjpeg_decode_end, 212 ff_mjpeg_decode_end,
213 sp5x_decode_frame, 213 sp5x_decode_frame,
214 .long_name = "AMV Video", 214 .long_name = NULL_IF_CONFIG_SMALL("AMV Video"),
215 }; 215 };