diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-07-11 12:41:42 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-07-11 18:45:44 +0200 |
commit | d80811c94e068085aab797f9ba35790529126f85 (patch) | |
tree | 36b351f1b300f57c899ff17f561f3f087193b632 /libavformat/dxa.c | |
parent | 355864ef7a9548ee6491a25de1e0650bd983a667 (diff) | |
download | ffmpeg-d80811c94e068085aab797f9ba35790529126f85.tar.gz |
riff: Use the correct logging context
Diffstat (limited to 'libavformat/dxa.c')
-rw-r--r-- | libavformat/dxa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dxa.c b/libavformat/dxa.c index 4a4d7c2cb0..34085cf446 100644 --- a/libavformat/dxa.c +++ b/libavformat/dxa.c @@ -106,7 +106,7 @@ static int dxa_read_header(AVFormatContext *s) ast = avformat_new_stream(s, NULL); if (!ast) return -1; - ret = ff_get_wav_header(pb, ast->codec, fsize); + ret = ff_get_wav_header(s, pb, ast->codec, fsize); if (ret < 0) return ret; if (ast->codec->sample_rate > 0) |