]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/psxstr.c
ffplay: Avoid useage of deprecated url_fileno().
[ffmpeg] / libavformat / psxstr.c
index 398e44e12818a0e847cb322d7140e316a1eea7d8..675a4b11dfeb0d1ba25f4a14d1eb703cceb410ae 100644 (file)
@@ -196,7 +196,7 @@ static int str_read_packet(AVFormatContext *s,
 
                 if(str->channels[channel].video_stream_index < 0){
                     /* allocate a new AVStream */
-                    st = av_new_stream(s, 0);
+                    st = avformat_new_stream(s, NULL);
                     if (!st)
                         return AVERROR(ENOMEM);
                     av_set_pts_info(st, 64, 1, 15);
@@ -244,7 +244,7 @@ static int str_read_packet(AVFormatContext *s,
             if(str->channels[channel].audio_stream_index < 0){
                 int fmt = sector[0x13];
                 /* allocate a new AVStream */
-                st = av_new_stream(s, 0);
+                st = avformat_new_stream(s, NULL);
                 if (!st)
                     return AVERROR(ENOMEM);