Replace remaining av_new_stream() with avformat_new_stream().

This commit is contained in:
Clément Bœsch
2011-11-05 13:11:18 +01:00
parent 454f165728
commit 0e5ecd806e
12 changed files with 19 additions and 14 deletions

View File

@ -32,7 +32,7 @@ static int g723_1_init(AVFormatContext *s, AVFormatParameters *ap)
{
AVStream *st;
st = av_new_stream(s, 0);
st = avformat_new_stream(s, NULL);
if (!st)
return AVERROR(ENOMEM);