diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-11-21 12:37:59 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-21 13:56:13 +0100 |
commit | 367c9d33d6dd1e8a85b63e14464e7e08ee1315cc (patch) | |
tree | 0cdace2b3b3ec2725b9b1bec9a669ad58dab24a2 /libavformat/utils.c | |
parent | f0ae0354d3f04c369257c2a28557524d28c5df15 (diff) | |
download | ffmpeg-367c9d33d6dd1e8a85b63e14464e7e08ee1315cc.tar.gz |
avformat: replace some odd 30-60 rates by higher less odd ones in get_std_framerate()
Fixes Ticket4012
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 6278668119..693b0339cf 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2787,10 +2787,16 @@ static void compute_chapters_end(AVFormatContext *s) static int get_std_framerate(int i) { - if (i < 60 * 12) + if (i < 30*12) return (i + 1) * 1001; - else - return ((const int[]) { 24, 30, 60, 12, 15, 48 })[i - 60 * 12] * 1000 * 12; + i -= 30*12; + + if (i < 7) + return ((const int[]) { 40, 48, 50, 60, 80, 120, 240})[i] * 1001 * 12; + + i -= 7; + + return ((const int[]) { 24, 30, 60, 12, 15, 48 })[i] * 1000 * 12; } /* Is the time base unreliable? |