diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-05 13:11:18 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-05 15:07:19 +0100 |
commit | 0e5ecd806eadf7dd0ec645b1b69310ee76c0cd1c (patch) | |
tree | aa4774ed8070f10d86a16ec814cd39deda0ad8a1 /libavformat/act.c | |
parent | 454f1657288e75a9797381c8a26598674ea9bd68 (diff) | |
download | ffmpeg-0e5ecd806eadf7dd0ec645b1b69310ee76c0cd1c.tar.gz |
Replace remaining av_new_stream() with avformat_new_stream().
Diffstat (limited to 'libavformat/act.c')
-rw-r--r-- | libavformat/act.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/act.c b/libavformat/act.c index 8454cd1fc0..bbda1ae409 100644 --- a/libavformat/act.c +++ b/libavformat/act.c @@ -69,7 +69,7 @@ static int read_header(AVFormatContext *s, int min,sec,msec; - st=av_new_stream(s, 0); + st = avformat_new_stream(s, NULL); if (!st) return AVERROR(ENOMEM); |