100l, to start reading from the first frame we must seek to data_offset,

not 0 in av_seek_frame_generic.

Originally committed as revision 17905 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-03-09 12:06:31 +00:00
parent fb2e95c97a
commit 3a4f91f5ed
1 changed files with 1 additions and 1 deletions

View File

@ -1515,7 +1515,7 @@ static int av_seek_frame_generic(AVFormatContext *s,
return ret;
av_update_cur_dts(s, st, ie->timestamp);
}else{
if ((ret = url_fseek(s->pb, 0, SEEK_SET)) < 0)
if ((ret = url_fseek(s->pb, s->data_offset, SEEK_SET)) < 0)
return ret;
}
for(i=0;; i++) {