Commit 3a4f91f5 authored by Reimar Döffinger's avatar Reimar Döffinger

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
parent fb2e95c9
...@@ -1515,7 +1515,7 @@ static int av_seek_frame_generic(AVFormatContext *s, ...@@ -1515,7 +1515,7 @@ static int av_seek_frame_generic(AVFormatContext *s,
return ret; return ret;
av_update_cur_dts(s, st, ie->timestamp); av_update_cur_dts(s, st, ie->timestamp);
}else{ }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; return ret;
} }
for(i=0;; i++) { for(i=0;; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment