diff options
Diffstat (limited to 'src/decoder')
-rw-r--r-- | src/decoder/ffmpeg_decoder_plugin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/decoder/ffmpeg_decoder_plugin.c b/src/decoder/ffmpeg_decoder_plugin.c index 484796fe3..1a1598f36 100644 --- a/src/decoder/ffmpeg_decoder_plugin.c +++ b/src/decoder/ffmpeg_decoder_plugin.c @@ -220,7 +220,8 @@ time_from_ffmpeg(int64_t t, const AVRational time_base) { assert(t != (int64_t)AV_NOPTS_VALUE); - return av_rescale_q(t, time_base, (AVRational){1, 1}); + return (double)av_rescale_q(t, time_base, (AVRational){1, 1024}) + / (double)1024; } static enum decoder_command |