[FFmpeg-cvslog] r17087 - trunk/libavcodec/xsubdec.c

cehoyos subversion
Mon Feb 9 01:18:26 CET 2009


Author: cehoyos
Date: Mon Feb  9 01:18:26 2009
New Revision: 17087

Log:
Fix timestamp parsing in XSUB decoder.

Patch by Bj?rn Axelsson gecko A acc D umu D se

Modified:
   trunk/libavcodec/xsubdec.c

Modified: trunk/libavcodec/xsubdec.c
==============================================================================
--- trunk/libavcodec/xsubdec.c	Mon Feb  9 01:18:25 2009	(r17086)
+++ trunk/libavcodec/xsubdec.c	Mon Feb  9 01:18:26 2009	(r17087)
@@ -28,7 +28,7 @@ static av_cold int decode_init(AVCodecCo
 }
 
 static const uint8_t tc_offsets[9] = { 0, 1, 3, 4, 6, 7, 9, 10, 11 };
-static const uint8_t tc_muls[9] = { 10, 6, 10, 6, 10, 6, 10, 10, 1 };
+static const uint8_t tc_muls[9] = { 10, 6, 10, 6, 10, 10, 10, 10, 1 };
 
 static uint64_t parse_timecode(const uint8_t *buf) {
     int i;




More information about the ffmpeg-cvslog mailing list