[FFmpeg-cvslog] hevc: pack PTL representation using uint8_t
Guillaume Martres
git at videolan.org
Sat Dec 14 03:37:24 CET 2013
ffmpeg | branch: master | Guillaume Martres <smarter at ubuntu.com> | Fri Dec 13 20:05:25 2013 +0100| [c90cdf4b6444a408b353c8c7dc08dc5c8e3df9bf] | committer: Michael Niedermayer
hevc: pack PTL representation using uint8_t
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c90cdf4b6444a408b353c8c7dc08dc5c8e3df9bf
---
libavcodec/hevc.h | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h
index 82136de..e184b3e 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 {
More information about the ffmpeg-cvslog
mailing list