Browse Source

Don't use s->pb if a local ByteIOContext was already provided by the calling

function. See mailinglist thread "[PATCH] RTSP-MS 1/15: don't use s->pb in
asf.c".

Originally committed as revision 16470 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Ronald S. Bultje 16 years ago
parent
commit
b0d75d6036
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/asf.c

+ 1
- 1
libavformat/asf.c View File

@@ -722,7 +722,7 @@ int ff_asf_parse_packet(AVFormatContext *s, ByteIOContext *pb, AVPacket *pkt)
return 1;
}
if (asf->packet_time_start == 0) {
if(asf_read_frame_header(s, s->pb) < 0){
if(asf_read_frame_header(s, pb) < 0){
asf->packet_segments= 0;
continue;
}


Loading…
Cancel
Save