diff options
author | Marton Balint <cus@passwd.hu> | 2020-02-28 01:21:04 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-03-14 22:25:25 +0100 |
commit | f69154b2c40c911797f7c5ad3188996d2be5cdb4 (patch) | |
tree | 290179d0b19e5d3c3e6ffeb2b34dd3efac35087d /libavformat/mxf.h | |
parent | 27a8146990e6e5f798a115b4491d0f67147c1c60 (diff) | |
download | ffmpeg-f69154b2c40c911797f7c5ad3188996d2be5cdb4.tar.gz |
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.h | 5 |
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; |