Mercurial > libavcodec.hg
comparison 8svx.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 | 78c7765d9618 |
children | 85ab7655ad4d |
comparison
equal
deleted
inserted
replaced
7039:b252326ba895 | 7040:e943e1409077 |
---|---|
94 .type = CODEC_TYPE_AUDIO, | 94 .type = CODEC_TYPE_AUDIO, |
95 .id = CODEC_ID_8SVX_FIB, | 95 .id = CODEC_ID_8SVX_FIB, |
96 .priv_data_size = sizeof (EightSvxContext), | 96 .priv_data_size = sizeof (EightSvxContext), |
97 .init = eightsvx_decode_init, | 97 .init = eightsvx_decode_init, |
98 .decode = eightsvx_decode_frame, | 98 .decode = eightsvx_decode_frame, |
99 .long_name = "8SVX fibonacci", | 99 .long_name = NULL_IF_CONFIG_SMALL("8SVX fibonacci"), |
100 }; | 100 }; |
101 | 101 |
102 AVCodec eightsvx_exp_decoder = { | 102 AVCodec eightsvx_exp_decoder = { |
103 .name = "8svx_exp", | 103 .name = "8svx_exp", |
104 .type = CODEC_TYPE_AUDIO, | 104 .type = CODEC_TYPE_AUDIO, |
105 .id = CODEC_ID_8SVX_EXP, | 105 .id = CODEC_ID_8SVX_EXP, |
106 .priv_data_size = sizeof (EightSvxContext), | 106 .priv_data_size = sizeof (EightSvxContext), |
107 .init = eightsvx_decode_init, | 107 .init = eightsvx_decode_init, |
108 .decode = eightsvx_decode_frame, | 108 .decode = eightsvx_decode_frame, |
109 .long_name = "8SVX exponential", | 109 .long_name = NULL_IF_CONFIG_SMALL("8SVX exponential"), |
110 }; | 110 }; |