diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2012-09-13 00:48:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-20 02:40:18 +0200 |
commit | d57ca5e5a8ba993630c87fbc87ed1f8267309278 (patch) | |
tree | ada94386ce6170560177f45b56682b5ca71f5bc7 /libavformat/mxfenc.c | |
parent | 906a2638139bfcce17d423cfa3a8ee633b38a2af (diff) | |
download | ffmpeg-d57ca5e5a8ba993630c87fbc87ed1f8267309278.tar.gz |
mxfenc: support 23.976 and 24 frame rates
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mxfenc.c')
-rw-r--r-- | libavformat/mxfenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c index 66c085fdcf..55d3202af3 100644 --- a/libavformat/mxfenc.c +++ b/libavformat/mxfenc.c @@ -53,6 +53,8 @@ typedef struct { } MXFSamplesPerFrame; static const MXFSamplesPerFrame mxf_samples_per_frames[] = { + { { 1001, 24000 }, { 2002, 0, 0, 0, 0, 0 } }, // FILM 23.976 + { { 1, 24}, { 2000, 0, 0, 0, 0, 0 } }, // FILM 24 { { 1001, 30000 }, { 1602, 1601, 1602, 1601, 1602, 0 } }, // NTSC 29.97 { { 1001, 60000 }, { 801, 801, 801, 801, 800, 0 } }, // NTSC 59.94 { { 1, 25 }, { 1920, 0, 0, 0, 0, 0 } }, // PAL 25 |