diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-03-01 00:16:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-03-01 00:16:00 +0000 |
commit | a5dbb247af9f02cff4899f16d3a87f49fe16727a (patch) | |
tree | 4975853ad6e6c5c2c62f08ebe4c3f79b31921297 /libavcodec | |
parent | 179386025eadce8a440a548b78008342de7c73a3 (diff) | |
download | ffmpeg-a5dbb247af9f02cff4899f16d3a87f49fe16727a.tar.gz |
fixing inaccurate frame_rate
Originally committed as revision 1616 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 2 | ||||
-rw-r--r-- | libavcodec/mpeg12data.h | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 2d3cec0494..3e89dae6a1 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -169,7 +169,7 @@ static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG, #define CODEC_CAP_PARSE_ONLY 0x0004 #define CODEC_CAP_TRUNCATED 0x0008 -#define FRAME_RATE_BASE 10000 +#define FRAME_RATE_BASE 10010 #define FF_COMMON_FRAME \ uint8_t *data[4];\ diff --git a/libavcodec/mpeg12data.h b/libavcodec/mpeg12data.h index ad5ae2ca5a..4a90bbdb72 100644 --- a/libavcodec/mpeg12data.h +++ b/libavcodec/mpeg12data.h @@ -386,14 +386,14 @@ static const uint8_t mbMotionVectorTable[17][2] = { static const int frame_rate_tab[9] = { 0, - (int)(23.976 * FRAME_RATE_BASE), - (int)(24 * FRAME_RATE_BASE), - (int)(25 * FRAME_RATE_BASE), - (int)(29.97 * FRAME_RATE_BASE), - (int)(30 * FRAME_RATE_BASE), - (int)(50 * FRAME_RATE_BASE), - (int)(59.94 * FRAME_RATE_BASE), - (int)(60 * FRAME_RATE_BASE), + 24000 * FRAME_RATE_BASE / 1001, + 24000 * FRAME_RATE_BASE / 1000, + 25000 * FRAME_RATE_BASE / 1000, + 30000 * FRAME_RATE_BASE / 1001, + 30000 * FRAME_RATE_BASE / 1000, + 50000 * FRAME_RATE_BASE / 1000, + 60000 * FRAME_RATE_BASE / 1001, + 60000 * FRAME_RATE_BASE / 1000, }; static const uint8_t non_linear_qscale[32] = { |