avformat: add AVFormatContext to ff_get_extradata()
Needed for av_log() inside that function. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
@@ -299,7 +299,7 @@ static int aiff_read_header(AVFormatContext *s)
|
||||
case MKTAG('w', 'a', 'v', 'e'):
|
||||
if ((uint64_t)size > (1<<30))
|
||||
return -1;
|
||||
if (ff_get_extradata(st->codecpar, pb, size) < 0)
|
||||
if (ff_get_extradata(s, st->codecpar, pb, size) < 0)
|
||||
return AVERROR(ENOMEM);
|
||||
if (st->codecpar->codec_id == AV_CODEC_ID_QDM2 && size>=12*4 && !st->codecpar->block_align) {
|
||||
st->codecpar->block_align = AV_RB32(st->codecpar->extradata+11*4);
|
||||
|
||||
Reference in New Issue
Block a user