From d754ed41727b1fcbab335b510248a9758a73320c Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Fri, 30 May 2014 07:17:28 +0200 Subject: riffenc: take an AVStream instead of an AVCodecContext It will be useful in the following commits. Also, rename the AVCodecContext pointer name from 'stream' to 'codec'. --- libavformat/riff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/riff.h') diff --git a/libavformat/riff.h b/libavformat/riff.h index f458f266e6..ddfb0fa664 100644 --- a/libavformat/riff.h +++ b/libavformat/riff.h @@ -53,7 +53,7 @@ int ff_get_wav_header(AVIOContext *pb, AVCodecContext *codec, int size); extern const AVCodecTag ff_codec_bmp_tags[]; extern const AVCodecTag ff_codec_wav_tags[]; -void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale); +void ff_parse_specific_params(AVStream *st, int *au_rate, int *au_ssize, int *au_scale); int ff_read_riff_info(AVFormatContext *s, int64_t size); -- cgit v1.2.3