diff options
author | Mickaƫl Raulet <mraulet@insa-rennes.fr> | 2013-10-20 09:30:27 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-22 08:41:14 +0200 |
commit | a8fafa89785bb6f85e764a50cec67fce1d1a4ce5 (patch) | |
tree | eb9270232d19b01b4e1742c0b5bc0df432926ddb | |
parent | 1912842045f2531f11ca90bbd483cd99096b4afd (diff) | |
download | ffmpeg-a8fafa89785bb6f85e764a50cec67fce1d1a4ce5.tar.gz |
hevc: cleaning disable field in deblocking filter(cherry picked from commit 7dd7a27ae850a51b3c9cd07046c422677398f6d5)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/hevc.c | 1 | ||||
-rw-r--r-- | libavcodec/hevc.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index 3bc8c68b3e..bfe1ab8874 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -1736,7 +1736,6 @@ static int hls_slice_data(HEVCContext *s) hls_sao_param(s, x_ctb >> s->sps->log2_ctb_size, y_ctb >> s->sps->log2_ctb_size); - s->deblock[ctb_addr_rs].disable = s->sh.disable_deblocking_filter_flag; s->deblock[ctb_addr_rs].beta_offset = s->sh.beta_offset; s->deblock[ctb_addr_rs].tc_offset = s->sh.tc_offset; s->filter_slice_edges[ctb_addr_rs] = s->sh.slice_loop_filter_across_slices_enabled_flag; diff --git a/libavcodec/hevc.h b/libavcodec/hevc.h index adad57cb27..9091862c8a 100644 --- a/libavcodec/hevc.h +++ b/libavcodec/hevc.h @@ -669,7 +669,6 @@ typedef struct SAOParams { } SAOParams; typedef struct DBParams { - uint8_t disable; int beta_offset; int tc_offset; } DBParams; |