[FFmpeg-cvslog] avformat/avidec: match first index and first packet size=0 handling

Michael Niedermayer git at videolan.org
Sat Aug 31 03:16:47 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Aug 31 03:08:25 2013 +0200| [227a0eb5a92409572f2cecde6137529b83e7d495] | committer: Michael Niedermayer

avformat/avidec: match first index and first packet size=0 handling

Fixes Ticket2861

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavformat/avidec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index 2827064..0aaa5a6 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -1423,7 +1423,7 @@ static int avi_read_idx1(AVFormatContext *s, int size)
         st  = s->streams[index];
         ast = st->priv_data;
 
-        if (first_packet && first_packet_pos && len) {
+        if (first_packet && first_packet_pos) {
             data_offset  = first_packet_pos - pos;
             first_packet = 0;
         }



More information about the ffmpeg-cvslog mailing list