comparison wmaenc.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 85ab7655ad4d
comparison
equal deleted inserted replaced
7039:b252326ba895 7040:e943e1409077
385 CODEC_ID_WMAV1, 385 CODEC_ID_WMAV1,
386 sizeof(WMACodecContext), 386 sizeof(WMACodecContext),
387 encode_init, 387 encode_init,
388 encode_superframe, 388 encode_superframe,
389 ff_wma_end, 389 ff_wma_end,
390 .long_name = "Windows Media Audio 1", 390 .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 1"),
391 }; 391 };
392 392
393 AVCodec wmav2_encoder = 393 AVCodec wmav2_encoder =
394 { 394 {
395 "wmav2", 395 "wmav2",
397 CODEC_ID_WMAV2, 397 CODEC_ID_WMAV2,
398 sizeof(WMACodecContext), 398 sizeof(WMACodecContext),
399 encode_init, 399 encode_init,
400 encode_superframe, 400 encode_superframe,
401 ff_wma_end, 401 ff_wma_end,
402 .long_name = "Windows Media Audio 2", 402 .long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 2"),
403 }; 403 };