aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorNuo Mi <nuomi2021@gmail.com>2024-08-23 23:03:54 +0800
committerNuo Mi <nuomi2021@gmail.com>2024-08-31 14:16:19 +0800
commitb2eabe0ff2c9c628eeeb2adcacd52c3e23e04fcf (patch)
treee02684910cdfecf9da7bc0e08a39d1668b831b3e /libavcodec
parent7bd22342c3bd92823475959850c00a0497855de2 (diff)
downloadffmpeg-b2eabe0ff2c9c628eeeb2adcacd52c3e23e04fcf.tar.gz
avcodec/vvcdec: format, fix indent for vvc_deblock_bs
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/vvc/filter.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/vvc/filter.c b/libavcodec/vvc/filter.c
index aa0d542271..25bef45eed 100644
--- a/libavcodec/vvc/filter.c
+++ b/libavcodec/vvc/filter.c
@@ -680,12 +680,12 @@ typedef void (*deblock_bs_fn)(const VVCLocalContext *lc, const int x0, const int
static void vvc_deblock_bs(const VVCLocalContext *lc, const int x0, const int y0, const int rs, const int vertical)
{
- const VVCFrameContext *fc = lc->fc;
- const VVCSPS *sps = fc->ps.sps;
- const VVCPPS *pps = fc->ps.pps;
- const int ctb_size = sps->ctb_size_y;
- const int x_end = FFMIN(x0 + ctb_size, pps->width) >> MIN_TU_LOG2;
- const int y_end = FFMIN(y0 + ctb_size, pps->height) >> MIN_TU_LOG2;
+ const VVCFrameContext *fc = lc->fc;
+ const VVCSPS *sps = fc->ps.sps;
+ const VVCPPS *pps = fc->ps.pps;
+ const int ctb_size = sps->ctb_size_y;
+ const int x_end = FFMIN(x0 + ctb_size, pps->width) >> MIN_TU_LOG2;
+ const int y_end = FFMIN(y0 + ctb_size, pps->height) >> MIN_TU_LOG2;
const int has_chroma = !!sps->r->sps_chroma_format_idc;
deblock_bs_fn deblock_bs[] = {
vvc_deblock_bs_luma, vvc_deblock_bs_chroma