Commit ce001bb8 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavf/mxf: Support 60fps output.

parent 55937bb4
...@@ -137,6 +137,7 @@ static const MXFSamplesPerFrame mxf_spf[] = { ...@@ -137,6 +137,7 @@ static const MXFSamplesPerFrame mxf_spf[] = {
{ { 1001, 60000 }, { 801, 801, 801, 801, 800, 0 } }, // NTSC 59.94 { { 1001, 60000 }, { 801, 801, 801, 801, 800, 0 } }, // NTSC 59.94
{ { 1, 25 }, { 1920, 0, 0, 0, 0, 0 } }, // PAL 25 { { 1, 25 }, { 1920, 0, 0, 0, 0, 0 } }, // PAL 25
{ { 1, 50 }, { 960, 0, 0, 0, 0, 0 } }, // PAL 50 { { 1, 50 }, { 960, 0, 0, 0, 0, 0 } }, // PAL 50
{ { 1, 60 }, { 800, 0, 0, 0, 0, 0 } },
}; };
static const AVRational mxf_time_base[] = { static const AVRational mxf_time_base[] = {
...@@ -146,6 +147,7 @@ static const AVRational mxf_time_base[] = { ...@@ -146,6 +147,7 @@ static const AVRational mxf_time_base[] = {
{ 1001, 60000 }, { 1001, 60000 },
{ 1, 25 }, { 1, 25 },
{ 1, 50 }, { 1, 50 },
{ 1, 60 },
{ 0, 0} { 0, 0}
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment