diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-22 20:59:49 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-22 21:00:06 +0200 |
commit | 3e07a056a8e67c8c8a1fdf4b1efd231aa9bcd0ad (patch) | |
tree | 45f19f2bb2c5f64016a3bda07e9ae07465ebeac1 /libavformat/electronicarts.c | |
parent | ce1059d5c9098d4c2f89288653198b2c03ea8f85 (diff) | |
parent | cb7b1a2dfb547ab78342a7a9d5cd729d77d90421 (diff) | |
download | ffmpeg-3e07a056a8e67c8c8a1fdf4b1efd231aa9bcd0ad.tar.gz |
Merge commit 'cb7b1a2dfb547ab78342a7a9d5cd729d77d90421'
* commit 'cb7b1a2dfb547ab78342a7a9d5cd729d77d90421':
electronicarts: set the framerate for TGQ/TQI
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/electronicarts.c')
-rw-r--r-- | libavformat/electronicarts.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c index 0ae6512377..9000f7f605 100644 --- a/libavformat/electronicarts.c +++ b/libavformat/electronicarts.c @@ -412,10 +412,12 @@ static int process_ea_header(AVFormatContext *s) case pQGT_TAG: case TGQs_TAG: ea->video_codec = AV_CODEC_ID_TGQ; + ea->time_base = (AVRational) { 1, 15 }; break; case pIQT_TAG: ea->video_codec = AV_CODEC_ID_TQI; + ea->time_base = (AVRational) { 1, 15 }; break; case MADk_TAG: |