Commit 370bb893 authored by Michael Niedermayer's avatar Michael Niedermayer

mp3enc: fix const correctness

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0e781d94
......@@ -372,7 +372,7 @@ static int mp2_write_trailer(struct AVFormatContext *s)
static int query_codec(enum AVCodecID id, int std_compliance)
{
CodecMime *cm= ff_id3v2_mime_tags;
const CodecMime *cm= ff_id3v2_mime_tags;
while(cm->id != AV_CODEC_ID_NONE) {
if(id == cm->id)
return MKTAG('A', 'P', 'I', 'C');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment