diff options
author | Guillaume Martres <smarter@ubuntu.com> | 2013-12-13 20:05:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-14 03:01:56 +0100 |
commit | ecb21d24373ccf8f1d090cff48f4e0c384b7f998 (patch) | |
tree | 6bc9d06e8e107292853fffb7a69390c09b01c83c /libavcodec/hevc.h | |
parent | c90cdf4b6444a408b353c8c7dc08dc5c8e3df9bf (diff) | |
download | ffmpeg-ecb21d24373ccf8f1d090cff48f4e0c384b7f998.tar.gz |
hevc: rename ptl structs and variables
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r-- | libavcodec/hevc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index e184b3e306..f26c6cb8b6 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -330,7 +330,7 @@ typedef struct VUI { int log2_max_mv_length_vertical; } VUI; -typedef struct ProfileTierLevel { +typedef struct PTLCommon { uint8_t profile_space; uint8_t tier_flag; uint8_t profile_idc; @@ -340,11 +340,11 @@ typedef struct ProfileTierLevel { uint8_t interlaced_source_flag; uint8_t non_packed_constraint_flag; uint8_t frame_only_constraint_flag; -} ProfileTierLevel; +} PTLCommon; typedef struct PTL { - ProfileTierLevel general_PTL; - ProfileTierLevel sub_layer_PTL[MAX_SUB_LAYERS]; + PTLCommon general_ptl; + PTLCommon sub_layer_ptl[MAX_SUB_LAYERS]; uint8_t sub_layer_profile_present_flag[MAX_SUB_LAYERS]; uint8_t sub_layer_level_present_flag[MAX_SUB_LAYERS]; |