mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
cafdec: Handle ALAC extradata.
This fixes roundup issue 2284. Originally committed as revision 25430 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
47a5fba773
commit
1e6f8d53fc
@ -115,6 +115,21 @@ static int read_kuki_chunk(AVFormatContext *s, int64_t size)
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
url_fskip(pb, skip);
|
||||
} else if (st->codec->codec_id == CODEC_ID_ALAC) {
|
||||
#define ALAC_PREAMBLE 12
|
||||
#define ALAC_HEADER 36
|
||||
if (size < ALAC_PREAMBLE + ALAC_HEADER) {
|
||||
av_log(s, AV_LOG_ERROR, "invalid ALAC magic cookie\n");
|
||||
url_fskip(pb, size);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
url_fskip(pb, ALAC_PREAMBLE);
|
||||
st->codec->extradata = av_mallocz(ALAC_HEADER + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
if (!st->codec->extradata)
|
||||
return AVERROR(ENOMEM);
|
||||
get_buffer(pb, st->codec->extradata, ALAC_HEADER);
|
||||
st->codec->extradata_size = ALAC_HEADER;
|
||||
url_fskip(pb, size - ALAC_PREAMBLE - ALAC_HEADER);
|
||||
} else {
|
||||
st->codec->extradata = av_mallocz(size + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||
if (!st->codec->extradata)
|
||||
|
Loading…
Reference in New Issue
Block a user