summaryrefslogtreecommitdiff
path: root/libavformat/riff.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-05-30 07:17:28 +0200
committerAnton Khirnov <anton@khirnov.net>2014-06-18 15:03:55 +0200
commitd754ed41727b1fcbab335b510248a9758a73320c (patch)
treea36c3d330f92bd2b3fb6f638a5aaada93f4951c4 /libavformat/riff.h
parentf792d3cbb8e8e35c54a9358a55dd596b7a40f228 (diff)
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'.
Diffstat (limited to 'libavformat/riff.h')
-rw-r--r--libavformat/riff.h2
1 files changed, 1 insertions, 1 deletions
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);