diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-10-24 14:29:05 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-10-24 17:55:35 +0000 |
commit | e12cfd044c2bae4a099a3b9384b148424858d72b (patch) | |
tree | 4aba9c28ab612423da55051b80bac48095daa77d /libavformat/utils.c | |
parent | e3ba817b95bbdc7c8aaf83b4a6804d1b49eb4de4 (diff) | |
download | ffmpeg-e12cfd044c2bae4a099a3b9384b148424858d72b.tar.gz |
lavf: const correctness for avformat_new_stream
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index cd4161ff82..fb5742b815 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3101,7 +3101,7 @@ AVStream *av_new_stream(AVFormatContext *s, int id) } #endif -AVStream *avformat_new_stream(AVFormatContext *s, AVCodec *c) +AVStream *avformat_new_stream(AVFormatContext *s, const AVCodec *c) { AVStream *st; int i; |