diff options
author | Marton Balint <cus@passwd.hu> | 2018-05-24 22:03:43 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2018-05-27 19:55:09 +0200 |
commit | 2b059813127cdbd0116505b8e8c8e2be0a660b85 (patch) | |
tree | b3b45cb42479fd4571c50791cdce8c6ddc518b94 /libavformat/mxf.c | |
parent | 9cefb9e7ec508900ba147e6977590f03456aa15c (diff) | |
download | ffmpeg-2b059813127cdbd0116505b8e8c8e2be0a660b85.tar.gz |
avformat/mxf: fix NTSC 59.94 samples per frame layout
FFmbc uses this.
bmx uses this.
XAVC MXF Mapping and Operating Points prefers this.
Basic rounding rules also yields these numbers.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/mxf.c')
-rw-r--r-- | libavformat/mxf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c index a909401f08..c8b57f7f0b 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -134,7 +134,7 @@ static const MXFSamplesPerFrame mxf_spf[] = { { { 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 + { { 1001, 60000 }, { 801, 801, 800, 801, 801, 0 } }, // NTSC 59.94 { { 1, 25 }, { 1920, 0, 0, 0, 0, 0 } }, // PAL 25 { { 1, 50 }, { 960, 0, 0, 0, 0, 0 } }, // PAL 50 { { 1, 60 }, { 800, 0, 0, 0, 0, 0 } }, |