comparison vorbis_enc.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 322023e630a6
comparison
equal deleted inserted replaced
7039:b252326ba895 7040:e943e1409077
1082 sizeof(venc_context_t), 1082 sizeof(venc_context_t),
1083 vorbis_encode_init, 1083 vorbis_encode_init,
1084 vorbis_encode_frame, 1084 vorbis_encode_frame,
1085 vorbis_encode_close, 1085 vorbis_encode_close,
1086 .capabilities= CODEC_CAP_DELAY, 1086 .capabilities= CODEC_CAP_DELAY,
1087 .long_name = "Vorbis", 1087 .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
1088 }; 1088 };