[FFmpeg-cvslog] lavf/mxf: Support 60fps output.

Carl Eugen Hoyos git at videolan.org
Fri Nov 17 00:47:51 EET 2017


ffmpeg | branch: master | Carl Eugen Hoyos <ceffmpeg at gmail.com> | Tue Oct 31 00:19:38 2017 +0100| [ce001bb8fc6677541c401a614e05e5058d58dde1] | committer: Carl Eugen Hoyos

lavf/mxf: Support 60fps output.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ce001bb8fc6677541c401a614e05e5058d58dde1
---

 libavformat/mxf.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/mxf.c b/libavformat/mxf.c
index bfc3218b81..5994b09914 100644
--- a/libavformat/mxf.c
+++ b/libavformat/mxf.c
@@ -137,6 +137,7 @@ static const MXFSamplesPerFrame mxf_spf[] = {
     { { 1001, 60000 }, { 801,  801,  801,  801,  800,  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 } },
 };
 
 static const AVRational mxf_time_base[] = {
@@ -146,6 +147,7 @@ static const AVRational mxf_time_base[] = {
     { 1001, 60000 },
     { 1, 25 },
     { 1, 50 },
+    { 1, 60 },
     { 0, 0}
 };
 



More information about the ffmpeg-cvslog mailing list