diff options
author | Joseph Artsimovich <joseph@mirriad.com> | 2012-02-07 10:48:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-11 17:39:52 +0100 |
commit | 84b9b4aa187c5a2aacbbd45c910e5b53eeaa1adf (patch) | |
tree | 67b6fd74aedb874e7ee0f8fbfeaaea93bfa9ab6a /libavformat/mxf.h | |
parent | 4ed0d182e249138f40c9f63bce772d5251d9703b (diff) | |
download | ffmpeg-84b9b4aa187c5a2aacbbd45c910e5b53eeaa1adf.tar.gz |
Fix frame height vs field height confusion in MXF decoding.
Reviewed-by: Tomas Härdin <tomas.hardin@codemill.se>
Reveiwed-by: Baptiste Coudurier <baptiste.coudurier@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mxf.h')
-rw-r--r-- | libavformat/mxf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/mxf.h b/libavformat/mxf.h index bbbdb1fcba..c55b50f224 100644 --- a/libavformat/mxf.h +++ b/libavformat/mxf.h @@ -46,6 +46,14 @@ enum MXFMetadataSetType { TypeBottom,// add metadata type before this }; +enum MXFFrameLayout { + FullFrame = 0, + MixedFields, + OneField, + SegmentedFrame, + SeparateFields +}; + typedef struct { UID key; int64_t offset; |