mp3enc: fix CODEC_ID/CodecID that leaked in from older patch
Found-by: jamal <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e874b29296
commit
bd6ece4609
@ -370,10 +370,10 @@ static int mp2_write_trailer(struct AVFormatContext *s)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int query_codec(enum CodecID id, int std_compliance)
|
static int query_codec(enum AVCodecID id, int std_compliance)
|
||||||
{
|
{
|
||||||
CodecMime *cm= ff_id3v2_mime_tags;
|
CodecMime *cm= ff_id3v2_mime_tags;
|
||||||
while(cm->id != CODEC_ID_NONE) {
|
while(cm->id != AV_CODEC_ID_NONE) {
|
||||||
if(id == cm->id)
|
if(id == cm->id)
|
||||||
return MKTAG('A', 'P', 'I', 'C');
|
return MKTAG('A', 'P', 'I', 'C');
|
||||||
cm++;
|
cm++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user