Browse Source

10l inverted condition check generated an endless loop

Originally committed as revision 6722 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 19 years ago
parent
commit
595da759de
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/ogg2.c

+ 1
- 1
libavformat/ogg2.c View File

@@ -494,7 +494,7 @@ ogg_get_length (AVFormatContext * s)
ogg->size = size;
ogg_restore (s, 0);
ogg_save (s);
while (ogg_read_page (s, &i)) {
while (!ogg_read_page (s, &i)) {
if (i == idx && ogg->streams[i].granule != -1 && ogg->streams[i].granule != 0)
break;
}


Loading…
Cancel
Save