diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-08-05 12:11:22 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2007-08-05 12:11:22 +0000 |
commit | d5049e2c6948d4d9529fb825912a907fb9077120 (patch) | |
tree | 4c7ff1d6b4691057a05a02b348f0d56be3dd5961 /libavcodec | |
parent | d6136c761822ab1fbcb8881080a6b98227b2cb14 (diff) | |
download | ffmpeg-d5049e2c6948d4d9529fb825912a907fb9077120.tar.gz |
get rid of av_rescale_q, it does not work as intended.
Originally committed as revision 9939 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/xsubdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/xsubdec.c b/libavcodec/xsubdec.c index f2ef39bf75..ad1f55ef69 100644 --- a/libavcodec/xsubdec.c +++ b/libavcodec/xsubdec.c @@ -20,7 +20,6 @@ static uint64_t parse_timecode(AVCodecContext *avctx, uint8_t *buf) { 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; } |