X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Frl2.c;h=743250a922db6d191171b4ac7d403b1a16bfd598;hb=b2bdca1b4a739992779f6641fcc122cffb240eb6;hp=b9f38be390b45df4029ffc8182eb29ac21066809;hpb=3ee83f46058449913abeca7ba82e8e2909828209;p=ffmpeg diff --git a/libavformat/rl2.c b/libavformat/rl2.c index b9f38be390b..743250a922d 100644 --- a/libavformat/rl2.c +++ b/libavformat/rl2.c @@ -110,7 +110,7 @@ static av_cold int rl2_read_header(AVFormatContext *s, def_sound_size = avio_rl16(pb); /** setup video stream */ - st = av_new_stream(s, 0); + st = avformat_new_stream(s, NULL); if(!st) return AVERROR(ENOMEM); @@ -140,7 +140,7 @@ static av_cold int rl2_read_header(AVFormatContext *s, pts_num = def_sound_size; pts_den = rate; - st = av_new_stream(s, 0); + st = avformat_new_stream(s, NULL); if (!st) return AVERROR(ENOMEM); st->codec->codec_type = AVMEDIA_TYPE_AUDIO;