Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2013-12-13 23:05:25 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-12-14 06:01:51 +0400
commitc90cdf4b6444a408b353c8c7dc08dc5c8e3df9bf (patch)
tree439e04c489519ff6542a54089c75df4d106d4084 /libavcodec/hevc.h
parent8e72e19f6468eddf7950668b8dea3dd60fed2e54 (diff)
hevc: pack PTL representation using uint8_t
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r--libavcodec/hevc.h16
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 {