comparison g726.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 74c1f1881d1a
comparison
equal deleted inserted replaced
7039:b252326ba895 7040:e943e1409077
411 sizeof(AVG726Context), 411 sizeof(AVG726Context),
412 g726_init, 412 g726_init,
413 g726_encode_frame, 413 g726_encode_frame,
414 g726_close, 414 g726_close,
415 NULL, 415 NULL,
416 .long_name = "G.726 ADPCM", 416 .long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM"),
417 }; 417 };
418 #endif //CONFIG_ENCODERS 418 #endif //CONFIG_ENCODERS
419 419
420 AVCodec adpcm_g726_decoder = { 420 AVCodec adpcm_g726_decoder = {
421 "g726", 421 "g726",
424 sizeof(AVG726Context), 424 sizeof(AVG726Context),
425 g726_init, 425 g726_init,
426 NULL, 426 NULL,
427 g726_close, 427 g726_close,
428 g726_decode_frame, 428 g726_decode_frame,
429 .long_name = "G.726 ADPCM", 429 .long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM"),
430 }; 430 };