comparison vocdec.c @ 3766:f062deeedb8d libavformat

Change codec_tag type from const struct AVCodecTag ** to const struct AVCodecTag * const *
author reimar
date Sun, 24 Aug 2008 16:51:50 +0000
parents 9cff515fd4c6
children 1d3d17de20ba
comparison
equal deleted inserted replaced
3765:d55fb12134d1 3766:f062deeedb8d
139 NULL_IF_CONFIG_SMALL("Creative Voice file format"), 139 NULL_IF_CONFIG_SMALL("Creative Voice file format"),
140 sizeof(voc_dec_context_t), 140 sizeof(voc_dec_context_t),
141 voc_probe, 141 voc_probe,
142 voc_read_header, 142 voc_read_header,
143 voc_read_packet, 143 voc_read_packet,
144 .codec_tag=(const AVCodecTag*[]){ff_voc_codec_tags, 0}, 144 .codec_tag=(const AVCodecTag* const []){ff_voc_codec_tags, 0},
145 }; 145 };