diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-05-30 07:17:28 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-06-18 15:03:55 +0200 |
commit | d754ed41727b1fcbab335b510248a9758a73320c (patch) | |
tree | a36c3d330f92bd2b3fb6f638a5aaada93f4951c4 /libavformat/riff.h | |
parent | f792d3cbb8e8e35c54a9358a55dd596b7a40f228 (diff) | |
download | ffmpeg-d754ed41727b1fcbab335b510248a9758a73320c.tar.gz |
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.h | 2 |
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); |