diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-04-14 18:21:08 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-04-14 18:21:08 +0200 |
commit | 323b8c95e41094b90ed2a9bdd9a06d22d2f74856 (patch) | |
tree | d0bb264c76b926aa306f9668adfa79361d8a56db /libavformat/apc.c | |
parent | 8e26bdd59bf559d00c7e60c53fff292de10139ff (diff) | |
download | ffmpeg-323b8c95e41094b90ed2a9bdd9a06d22d2f74856.tar.gz |
avformat: add AVFormatContext to ff_get_extradata()
Needed for av_log() inside that function.
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/apc.c')
-rw-r--r-- | libavformat/apc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/apc.c b/libavformat/apc.c index 64c1c6db3e..a4dcf660e5 100644 --- a/libavformat/apc.c +++ b/libavformat/apc.c @@ -53,7 +53,7 @@ static int apc_read_header(AVFormatContext *s) st->codecpar->sample_rate = avio_rl32(pb); /* initial predictor values for adpcm decoder */ - if (ff_get_extradata(st->codecpar, pb, 2 * 4) < 0) + if (ff_get_extradata(s, st->codecpar, pb, 2 * 4) < 0) return AVERROR(ENOMEM); if (avio_rl32(pb)) { |