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/riff.h | |
parent | 355864ef7a9548ee6491a25de1e0650bd983a667 (diff) | |
download | ffmpeg-d80811c94e068085aab797f9ba35790529126f85.tar.gz |
riff: Use the correct logging context
Diffstat (limited to 'libavformat/riff.h')
-rw-r--r-- | libavformat/riff.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/riff.h b/libavformat/riff.h index ddfb0fa664..5bac95a853 100644 --- a/libavformat/riff.h +++ b/libavformat/riff.h @@ -48,7 +48,7 @@ int ff_get_bmp_header(AVIOContext *pb, AVStream *st); void ff_put_bmp_header(AVIOContext *pb, AVCodecContext *enc, const AVCodecTag *tags, int for_asf); int ff_put_wav_header(AVIOContext *pb, AVCodecContext *enc); enum AVCodecID ff_wav_codec_get_id(unsigned int tag, int bps); -int ff_get_wav_header(AVIOContext *pb, AVCodecContext *codec, int size); +int ff_get_wav_header(AVFormatContext *s, AVIOContext *pb, AVCodecContext *codec, int size); extern const AVCodecTag ff_codec_bmp_tags[]; extern const AVCodecTag ff_codec_wav_tags[]; |