diff options
author | David Conrad <lessen42@gmail.com> | 2010-01-11 00:31:39 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2010-01-11 00:31:39 +0000 |
commit | c4dffe7e36a41df66203a7757e3b56ed85822367 (patch) | |
tree | a433f57356bddf69799ff7176792539bc0db8db1 /libavcodec/h264.h | |
parent | 7bd3096f5fa6b7cf645fa1493d87f385fe8d502d (diff) | |
download | ffmpeg-c4dffe7e36a41df66203a7757e3b56ed85822367.tar.gz |
Export fullrange flag and color information for h.264
Originally committed as revision 21126 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 91ecee58e0..d0bc691e04 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -166,6 +166,12 @@ typedef struct SPS{ unsigned int crop_bottom; ///< frame_cropping_rect_bottom_offset int vui_parameters_present_flag; AVRational sar; + int video_signal_type_present_flag; + int full_range; + int colour_description_present_flag; + enum AVColorPrimaries color_primaries; + enum AVColorTransferCharacteristic color_trc; + enum AVColorSpace colorspace; int timing_info_present_flag; uint32_t num_units_in_tick; uint32_t time_scale; |