diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-05 02:51:19 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-05 02:51:19 +0200 |
commit | cf5a98b9e356830c4d4752a7c335aa6ad54d3711 (patch) | |
tree | 5f1bf3f1a413a91ae8479c2875272535587687a8 /libavcodec/mpeg12data.h | |
parent | 66a4ac5182777ef0ade673c89a4766909ac9d00c (diff) | |
download | ffmpeg-cf5a98b9e356830c4d4752a7c335aa6ad54d3711.tar.gz |
mpeg2videodec: fix list of supported frame rates to include sane ext rates.
This only adds a subset of the frame rates that can be stored, a full list
would be more than 500 entries. Such full list could (and should) be added
if it has a usecase but the number of users of even the now added rates
seem rather small.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpeg12data.h')
-rw-r--r-- | libavcodec/mpeg12data.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpeg12data.h b/libavcodec/mpeg12data.h index d4ef11e0c6..7eac33baa5 100644 --- a/libavcodec/mpeg12data.h +++ b/libavcodec/mpeg12data.h @@ -49,6 +49,7 @@ extern const uint8_t ff_mpeg12_mbPatTable[64][2]; extern const uint8_t ff_mpeg12_mbMotionVectorTable[17][2]; extern const AVRational avpriv_frame_rate_tab[]; +extern const AVRational ff_mpeg2_frame_rate_tab[]; extern const float ff_mpeg1_aspect[16]; extern const AVRational ff_mpeg2_aspect[16]; |