mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avformat/mp3enc: Improve query_codec
Signal that anything except MP3 and the ID3V2 attached pic types are forbidden. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
d11b5e6096
commit
eb3ee7f141
@ -495,12 +495,16 @@ static int mp3_write_trailer(struct AVFormatContext *s)
|
||||
static int query_codec(enum AVCodecID id, int std_compliance)
|
||||
{
|
||||
const CodecMime *cm= ff_id3v2_mime_tags;
|
||||
|
||||
if (id == AV_CODEC_ID_MP3)
|
||||
return 1;
|
||||
|
||||
while(cm->id != AV_CODEC_ID_NONE) {
|
||||
if(id == cm->id)
|
||||
return MKTAG('A', 'P', 'I', 'C');
|
||||
cm++;
|
||||
}
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const AVOption options[] = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user