From e12cfd044c2bae4a099a3b9384b148424858d72b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 24 Oct 2012 14:29:05 +0000 Subject: lavf: const correctness for avformat_new_stream Signed-off-by: Paul B Mahol --- libavformat/avformat.h | 2 +- libavformat/utils.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/avformat.h b/libavformat/avformat.h index f993dbcff9..3d99518990 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1311,7 +1311,7 @@ const AVClass *avformat_get_class(void); * * @return newly created stream or NULL on error. */ -AVStream *avformat_new_stream(AVFormatContext *s, AVCodec *c); +AVStream *avformat_new_stream(AVFormatContext *s, const AVCodec *c); AVProgram *av_new_program(AVFormatContext *s, int id); 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; -- cgit v1.2.3