summaryrefslogtreecommitdiff
path: root/libavcodec/hevc.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-07-28 01:06:32 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-07-28 14:20:19 +0200
commita5c621aa852522c79146035b2db4b89d2e096d3c (patch)
tree4e0cba792cf9349b16da5b8149d099084227fadb /libavcodec/hevc.h
parente0492311c8541da55a4b08641364ce8e1a169740 (diff)
hevc: rename variable in boundary strength to b more explicit
Signed-off-by: Mickaƫl Raulet <mraulet@insa-rennes.fr> cherry picked from commit 348bebedc0012aae201419669fca1eb61ec93ca6 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.h')
-rw-r--r--libavcodec/hevc.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h
index 7ed74dba17..8420f38dc3 100644
--- a/libavcodec/hevc.h
+++ b/libavcodec/hevc.h
@@ -779,8 +779,13 @@ typedef struct HEVCLocalContext {
PredictionUnit pu;
NeighbourAvailable na;
- uint8_t slice_or_tiles_left_boundary;
- uint8_t slice_or_tiles_up_boundary;
+#define BOUNDARY_LEFT_SLICE (1 << 0)
+#define BOUNDARY_LEFT_TILE (1 << 1)
+#define BOUNDARY_UPPER_SLICE (1 << 2)
+#define BOUNDARY_UPPER_TILE (1 << 3)
+ /* properties of the boundary of the current CTB for the purposes
+ * of the deblocking filter */
+ int boundary_flags;
} HEVCLocalContext;
typedef struct HEVCContext {