From a8fafa89785bb6f85e764a50cec67fce1d1a4ce5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Raulet?= Date: Sun, 20 Oct 2013 09:30:27 +0200 Subject: [PATCH] hevc: cleaning disable field in deblocking filter(cherry picked from commit 7dd7a27ae850a51b3c9cd07046c422677398f6d5) Signed-off-by: Michael Niedermayer --- libavcodec/hevc.c | 1 - libavcodec/hevc.h | 1 - 2 files changed, 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;