summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2020-02-28 01:29:51 +0100
committerMarton Balint <cus@passwd.hu>2020-03-14 22:25:25 +0100
commitae4d00b97f78e06599e79e89b41edf2d97908b66 (patch)
treecb5b1523a9f03478af956fa9155198b97d256b95
parentf69154b2c40c911797f7c5ad3188996d2be5cdb4 (diff)
avformat/mxfenc: add some missing content package rates
Fixes ticket #8523. Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r--libavformat/mxf.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c
index 80626e2a16..7d154ca9d3 100644
--- a/libavformat/mxf.c
+++ b/libavformat/mxf.c
@@ -139,10 +139,23 @@ static const MXFContentPackageRate mxf_content_package_rates[] = {
{ 2, { 1, 24 } },
{ 3, { 1001, 24000 } },
{ 4, { 1, 25 } },
+ { 6, { 1, 30 } },
{ 7, { 1001, 30000 } },
+ { 8, { 1 , 48 } },
+ { 9, { 1001, 48000 } },
{ 10, { 1, 50 } },
{ 12, { 1, 60 } },
{ 13, { 1001, 60000 } },
+ { 14, { 1, 72 } },
+ { 15, { 1001, 72000 } },
+ { 16, { 1, 75 } },
+ { 18, { 1, 90 } },
+ { 19, { 1001, 90000 } },
+ { 20, { 1, 96 } },
+ { 21, { 1001, 96000 } },
+ { 22, { 1, 100 } },
+ { 24, { 1, 120 } },
+ { 25, { 1001, 120000} },
{0}
};