Browse Source

avformat/thp: force moving forward

Fixes infinite loop
Fixes Ticket3098

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 11 years ago
parent
commit
6c4b87d3d6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/thp.c

+ 1
- 1
libavformat/thp.c View File

@@ -158,7 +158,7 @@ static int thp_read_packet(AVFormatContext *s,
avio_seek(pb, thp->next_frame, SEEK_SET);

/* Locate the next frame and read out its size. */
thp->next_frame += thp->next_framesz;
thp->next_frame += FFMAX(thp->next_framesz, 1);
thp->next_framesz = avio_rb32(pb);

avio_rb32(pb); /* Previous total size. */


Loading…
Cancel
Save