[FFmpeg-cvslog] matroskadec: fix stupid typo (!= -> ==)

Anton Khirnov git at videolan.org
Mon Jul 11 05:52:41 CEST 2011


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sun Jul 10 20:48:23 2011 +0100| [fdb94444beb9c32beb8cfc70656f5115d9eec58b] | committer: Mans Rullgard

matroskadec: fix stupid typo (!= -> ==)

Signed-off-by: Mans Rullgard <mans at mansr.com>

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

 libavformat/matroskadec.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index e1e555d..70bb765 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -1200,7 +1200,7 @@ static void matroska_parse_cues(MatroskaDemuxContext *matroska) {
     int i, j;
 
     for (i = 0; i < seekhead_list->nb_elem; i++)
-        if (seekhead[i].id != MATROSKA_ID_CUES)
+        if (seekhead[i].id == MATROSKA_ID_CUES)
             break;
     assert(i <= seekhead_list->nb_elem);
 



More information about the ffmpeg-cvslog mailing list