comparison gifdec.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 5b3acf9fd50a
children 04423b2f6e0b
comparison
equal deleted inserted replaced
7039:b252326ba895 7040:e943e1409077
331 sizeof(GifState), 331 sizeof(GifState),
332 gif_decode_init, 332 gif_decode_init,
333 NULL, 333 NULL,
334 gif_decode_close, 334 gif_decode_close,
335 gif_decode_frame, 335 gif_decode_frame,
336 .long_name = "GIF (Graphics Interchange Format)", 336 .long_name = NULL_IF_CONFIG_SMALL("GIF (Graphics Interchange Format)"),
337 }; 337 };