From 0e5ecd806eadf7dd0ec645b1b69310ee76c0cd1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Sat, 5 Nov 2011 13:11:18 +0100 Subject: Replace remaining av_new_stream() with avformat_new_stream(). --- libavformat/bintext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/bintext.c') diff --git a/libavformat/bintext.c b/libavformat/bintext.c index e03a31e447..2450d92d0e 100644 --- a/libavformat/bintext.c +++ b/libavformat/bintext.c @@ -102,7 +102,7 @@ static AVStream * init_stream(AVFormatContext *s, AVFormatParameters *ap) { BinDemuxContext *bin = s->priv_data; - AVStream *st = av_new_stream(s, 0); + AVStream *st = avformat_new_stream(s, NULL); if (!st) return NULL; st->codec->codec_tag = 0; -- cgit v1.2.1