simplify
authorAurelien Jacobs <aurel@gnuage.org>
Sat, 23 Jun 2007 12:49:36 +0000 (12:49 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Sat, 23 Jun 2007 12:49:36 +0000 (12:49 +0000)
Originally committed as revision 9399 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/matroskadec.c

index 2a9c187..87e1dc0 100644 (file)
@@ -2271,10 +2271,8 @@ matroska_parse_block(MatroskaDemuxContext *matroska, uint8_t *data, int size,
     /* block_time (relative to cluster time) */
     block_time = AV_RB16(data);
     data += 2;
-    size -= 2;
-    flags = *data;
-    data += 1;
-    size -= 1;
+    flags = *data++;
+    size -= 3;
     if (is_keyframe == -1)
         is_keyframe = flags & 1 ? PKT_FLAG_KEY : 0;