[FFmpeg-cvslog] asfdec: always reset packet state after seeking

Hendrik Leppkes git at videolan.org
Sun Jul 12 17:10:04 CEST 2015


ffmpeg | branch: master | Hendrik Leppkes <h.leppkes at gmail.com> | Sun Jul 12 12:34:13 2015 +0200| [796268654c7807c9a1cfb322c838383e2b900d60] | committer: Luca Barbato

asfdec: always reset packet state after seeking

Signed-off-by: Luca Barbato <lu_zero at gentoo.org>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=796268654c7807c9a1cfb322c838383e2b900d60
---

 libavformat/asfdec.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c
index 8e706fb..eaa69fd 100644
--- a/libavformat/asfdec.c
+++ b/libavformat/asfdec.c
@@ -1558,12 +1558,10 @@ static int asf_read_seek(AVFormatContext *s, int stream_index,
     } else {
         if ((ret = ff_seek_frame_binary(s, stream_index, timestamp, flags)) < 0)
             return ret;
-
-        // asf_read_timestamp is called inside ff_seek_frame_binary and leaves state dirty,
-        // so reset_packet_state have to be called after it.
-        reset_packet_state(s);
     }
 
+    reset_packet_state(s);
+
     return 0;
 }
 



More information about the ffmpeg-cvslog mailing list