diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2013-11-10 23:23:57 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2013-12-09 16:02:43 +0100 |
commit | acb77dff6af036192f6064c84f9cccc48582989e (patch) | |
tree | 2c20623f907e9052898616ba034e963bd3a5445b /libavcodec/hevc.h | |
parent | 3d1d175367f1f22e0c4952299a258272e2e2acf1 (diff) | |
download | ffmpeg-acb77dff6af036192f6064c84f9cccc48582989e.tar.gz |
hevc: parse frame packing arrangement SEI messages and save relevant stereo3d information
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index ab95035dda..d19f3122f5 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -920,6 +920,12 @@ typedef struct HEVCContext { int nal_length_size; ///< Number of bytes used for nal length (1, 2 or 4) int nuh_layer_id; + + /** frame packing arrangement variables */ + int sei_frame_packing_present; + int frame_packing_arrangement_type; + int content_interpretation_type; + int quincunx_subsampling; } HEVCContext; int ff_hevc_decode_short_term_rps(HEVCContext *s, ShortTermRPS *rps, |