X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Frl2.c;h=743250a922db6d191171b4ac7d403b1a16bfd598;hb=60fcc19bff49e0b1972eae014afc087afd94a415;hp=b9f38be390b45df4029ffc8182eb29ac21066809;hpb=f9a2d0c3feccab94a86c92396f3e36110dc2227b;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;