summaryrefslogtreecommitdiff
path: root/libavformat/mxf.h
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2020-02-28 01:21:04 +0100
committerMarton Balint <cus@passwd.hu>2020-03-14 22:25:25 +0100
commitf69154b2c40c911797f7c5ad3188996d2be5cdb4 (patch)
tree290179d0b19e5d3c3e6ffeb2b34dd3efac35087d /libavformat/mxf.h
parent27a8146990e6e5f798a115b4491d0f67147c1c60 (diff)
avformat/mxfenc: move content package rates and timebase combinations to a separate struct
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/mxf.h')
-rw-r--r--libavformat/mxf.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/mxf.h b/libavformat/mxf.h
index 2669269830..f2fff2781e 100644
--- a/libavformat/mxf.h
+++ b/libavformat/mxf.h
@@ -59,6 +59,11 @@ enum MXFFrameLayout {
SegmentedFrame,
};
+typedef struct MXFContentPackageRate {
+ int rate;
+ AVRational tb;
+} MXFContentPackageRate;
+
typedef struct KLVPacket {
UID key;
int64_t offset;