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

reimar subversion
Sun Aug 5 14:11:22 CEST 2007


Author: reimar
Date: Sun Aug  5 14:11:22 2007
New Revision: 9939

Log:
get rid of av_rescale_q, it does not work as intended.


Modified:
   trunk/libavcodec/xsubdec.c

Modified: trunk/libavcodec/xsubdec.c
==============================================================================
--- trunk/libavcodec/xsubdec.c	(original)
+++ trunk/libavcodec/xsubdec.c	Sun Aug  5 14:11:22 2007
@@ -20,7 +20,6 @@ static uint64_t parse_timecode(AVCodecCo
         if (c > 9) return AV_NOPTS_VALUE;
         ms = (ms + c) * tc_muls[i];
     }
-    ms = av_rescale_q(ms, (AVRational){1, 1000}, avctx->time_base);
     return ms;
 }
 




More information about the ffmpeg-cvslog mailing list