From c90cdf4b6444a408b353c8c7dc08dc5c8e3df9bf Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Fri, 13 Dec 2013 20:05:25 +0100 Subject: [PATCH] hevc: pack PTL representation using uint8_t Signed-off-by: Michael Niedermayer --- libavcodec/hevc.h | 16 ++++++++-------- 1 file 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 {