diff options
author | Guillaume Martres <smarter@ubuntu.com> | 2013-12-13 20:05:25 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-14 03:01:51 +0100 |
commit | c90cdf4b6444a408b353c8c7dc08dc5c8e3df9bf (patch) | |
tree | 439e04c489519ff6542a54089c75df4d106d4084 /libavcodec | |
parent | 8e72e19f6468eddf7950668b8dea3dd60fed2e54 (diff) | |
download | ffmpeg-c90cdf4b6444a408b353c8c7dc08dc5c8e3df9bf.tar.gz |
hevc: pack PTL representation using uint8_t
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/hevc.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index 82136dec4a..e184b3e306 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -331,15 +331,15 @@ typedef struct VUI { } VUI; typedef struct ProfileTierLevel { - int profile_space; + uint8_t profile_space; uint8_t tier_flag; - int profile_idc; - int profile_compatibility_flag[32]; - int level_idc; - int progressive_source_flag; - int interlaced_source_flag; - int non_packed_constraint_flag; - int frame_only_constraint_flag; + uint8_t profile_idc; + uint8_t profile_compatibility_flag[32]; + uint8_t level_idc; + uint8_t progressive_source_flag; + uint8_t interlaced_source_flag; + uint8_t non_packed_constraint_flag; + uint8_t frame_only_constraint_flag; } ProfileTierLevel; typedef struct PTL { |