]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rl2.c
pthread: do not touch has_b_frames
[ffmpeg] / libavformat / rl2.c
index 42b46a8e3690fc1a2c8e711990171909d0176629..e7b9fd9f985439e479331fa8e6a977b9c21f4298 100644 (file)
@@ -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;