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

Originally committed as revision 9939 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2007-08-05 12:11:22 +00:00
parent d6136c7618
commit d5049e2c69
1 changed files with 0 additions and 1 deletions

View File

@ -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;
}