| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * HEVC video decoder | ||
| 3 | * | ||
| 4 | * Copyright (C) 2012 - 2013 Guillaume Martres | ||
| 5 | * Copyright (C) 2013 Seppo Tomperi | ||
| 6 | * Copyright (C) 2013 Wassim Hamidouche | ||
| 7 | * | ||
| 8 | * This file is part of FFmpeg. | ||
| 9 | * | ||
| 10 | * FFmpeg is free software; you can redistribute it and/or | ||
| 11 | * modify it under the terms of the GNU Lesser General Public | ||
| 12 | * License as published by the Free Software Foundation; either | ||
| 13 | * version 2.1 of the License, or (at your option) any later version. | ||
| 14 | * | ||
| 15 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 18 | * Lesser General Public License for more details. | ||
| 19 | * | ||
| 20 | * You should have received a copy of the GNU Lesser General Public | ||
| 21 | * License along with FFmpeg; if not, write to the Free Software | ||
| 22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 23 | */ | ||
| 24 | |||
| 25 | #include "libavutil/common.h" | ||
| 26 | #include "libavutil/internal.h" | ||
| 27 | |||
| 28 | #include "hevcdec.h" | ||
| 29 | #include "libavcodec/progressframe.h" | ||
| 30 | |||
| 31 | #define LUMA 0 | ||
| 32 | #define CB 1 | ||
| 33 | #define CR 2 | ||
| 34 | |||
| 35 | static const uint8_t tctable[54] = { | ||
| 36 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, // QP 0...18 | ||
| 37 | 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, // QP 19...37 | ||
| 38 | 5, 5, 6, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 20, 22, 24 // QP 38...53 | ||
| 39 | }; | ||
| 40 | |||
| 41 | static const uint8_t betatable[52] = { | ||
| 42 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, // QP 0...18 | ||
| 43 | 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, // QP 19...37 | ||
| 44 | 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64 // QP 38...51 | ||
| 45 | }; | ||
| 46 | |||
| 47 | 20994192 | static int chroma_tc(const HEVCPPS *pps, const HEVCSPS *sps, | |
| 48 | int qp_y, int c_idx, int tc_offset) | ||
| 49 | { | ||
| 50 | static const int qp_c[] = { | ||
| 51 | 29, 30, 31, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37 | ||
| 52 | }; | ||
| 53 | int qp, qp_i, offset, idxt; | ||
| 54 | |||
| 55 | // slice qp offset is not used for deblocking | ||
| 56 |
2/2✓ Branch 0 taken 10497096 times.
✓ Branch 1 taken 10497096 times.
|
20994192 | if (c_idx == 1) |
| 57 | 10497096 | offset = pps->cb_qp_offset; | |
| 58 | else | ||
| 59 | 10497096 | offset = pps->cr_qp_offset; | |
| 60 | |||
| 61 | 20994192 | qp_i = av_clip(qp_y + offset, 0, 57); | |
| 62 |
2/2✓ Branch 0 taken 18749968 times.
✓ Branch 1 taken 2244224 times.
|
20994192 | if (sps->chroma_format_idc == 1) { |
| 63 |
2/2✓ Branch 0 taken 4023222 times.
✓ Branch 1 taken 14726746 times.
|
18749968 | if (qp_i < 30) |
| 64 | 4023222 | qp = qp_i; | |
| 65 |
2/2✓ Branch 0 taken 186816 times.
✓ Branch 1 taken 14539930 times.
|
14726746 | else if (qp_i > 43) |
| 66 | 186816 | qp = qp_i - 6; | |
| 67 | else | ||
| 68 | 14539930 | qp = qp_c[qp_i - 30]; | |
| 69 | } else { | ||
| 70 | 2244224 | qp = av_clip(qp_i, 0, 51); | |
| 71 | } | ||
| 72 | |||
| 73 | 20994192 | idxt = av_clip(qp + DEFAULT_INTRA_TC_OFFSET + tc_offset, 0, 53); | |
| 74 | 20994192 | return tctable[idxt]; | |
| 75 | } | ||
| 76 | |||
| 77 | 2092566 | static int get_qPy_pred(HEVCLocalContext *lc, const HEVCContext *s, | |
| 78 | const HEVCLayerContext *l, | ||
| 79 | const HEVCPPS *pps, const HEVCSPS *sps, | ||
| 80 | int xBase, int yBase, int log2_cb_size) | ||
| 81 | { | ||
| 82 | 2092566 | int ctb_size_mask = (1 << sps->log2_ctb_size) - 1; | |
| 83 | 2092566 | int MinCuQpDeltaSizeMask = (1 << (sps->log2_ctb_size - | |
| 84 | 2092566 | pps->diff_cu_qp_delta_depth)) - 1; | |
| 85 | 2092566 | int xQgBase = xBase - (xBase & MinCuQpDeltaSizeMask); | |
| 86 | 2092566 | int yQgBase = yBase - (yBase & MinCuQpDeltaSizeMask); | |
| 87 | 2092566 | int min_cb_width = sps->min_cb_width; | |
| 88 | 2092566 | int x_cb = xQgBase >> sps->log2_min_cb_size; | |
| 89 | 2092566 | int y_cb = yQgBase >> sps->log2_min_cb_size; | |
| 90 |
2/2✓ Branch 0 taken 1131860 times.
✓ Branch 1 taken 960706 times.
|
3224426 | int availableA = (xBase & ctb_size_mask) && |
| 91 |
2/2✓ Branch 0 taken 802433 times.
✓ Branch 1 taken 329427 times.
|
1131860 | (xQgBase & ctb_size_mask); |
| 92 |
2/2✓ Branch 0 taken 1080899 times.
✓ Branch 1 taken 1011667 times.
|
3173465 | int availableB = (yBase & ctb_size_mask) && |
| 93 |
2/2✓ Branch 0 taken 800654 times.
✓ Branch 1 taken 280245 times.
|
1080899 | (yQgBase & ctb_size_mask); |
| 94 | int qPy_pred, qPy_a, qPy_b; | ||
| 95 | |||
| 96 | // qPy_pred | ||
| 97 |
5/6✓ Branch 0 taken 1994922 times.
✓ Branch 1 taken 97644 times.
✓ Branch 2 taken 27802 times.
✓ Branch 3 taken 1967120 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 27802 times.
|
2092566 | if (lc->first_qp_group || (!xQgBase && !yQgBase)) { |
| 98 | 97644 | lc->first_qp_group = !lc->tu.is_cu_qp_delta_coded; | |
| 99 | 97644 | qPy_pred = s->sh.slice_qp; | |
| 100 | } else { | ||
| 101 | 1994922 | qPy_pred = lc->qPy_pred; | |
| 102 | } | ||
| 103 | |||
| 104 | // qPy_a | ||
| 105 |
2/2✓ Branch 0 taken 1290133 times.
✓ Branch 1 taken 802433 times.
|
2092566 | if (availableA == 0) |
| 106 | 1290133 | qPy_a = qPy_pred; | |
| 107 | else | ||
| 108 | 802433 | qPy_a = l->qp_y_tab[(x_cb - 1) + y_cb * min_cb_width]; | |
| 109 | |||
| 110 | // qPy_b | ||
| 111 |
2/2✓ Branch 0 taken 1291912 times.
✓ Branch 1 taken 800654 times.
|
2092566 | if (availableB == 0) |
| 112 | 1291912 | qPy_b = qPy_pred; | |
| 113 | else | ||
| 114 | 800654 | qPy_b = l->qp_y_tab[x_cb + (y_cb - 1) * min_cb_width]; | |
| 115 | |||
| 116 | av_assert2(qPy_a >= -sps->qp_bd_offset && qPy_a < 52); | ||
| 117 | av_assert2(qPy_b >= -sps->qp_bd_offset && qPy_b < 52); | ||
| 118 | |||
| 119 | 2092566 | return (qPy_a + qPy_b + 1) >> 1; | |
| 120 | } | ||
| 121 | |||
| 122 | 2092566 | void ff_hevc_set_qPy(HEVCLocalContext *lc, | |
| 123 | const HEVCLayerContext *l, const HEVCPPS *pps, | ||
| 124 | int xBase, int yBase, int log2_cb_size) | ||
| 125 | { | ||
| 126 | 2092566 | const HEVCSPS *const sps = pps->sps; | |
| 127 | 2092566 | const HEVCContext *const s = lc->parent; | |
| 128 | 2092566 | int qp_y = get_qPy_pred(lc, s, l, pps, sps, xBase, yBase, log2_cb_size); | |
| 129 | |||
| 130 |
2/2✓ Branch 0 taken 485047 times.
✓ Branch 1 taken 1607519 times.
|
2092566 | if (lc->tu.cu_qp_delta != 0) { |
| 131 | 485047 | int off = sps->qp_bd_offset; | |
| 132 |
1/2✓ Branch 0 taken 485047 times.
✗ Branch 1 not taken.
|
485047 | lc->qp_y = FFUMOD(qp_y + lc->tu.cu_qp_delta + 52 + 2 * off, |
| 133 | 485047 | 52 + off) - off; | |
| 134 | } else | ||
| 135 | 1607519 | lc->qp_y = qp_y; | |
| 136 | 2092566 | } | |
| 137 | |||
| 138 | 123257782 | static int get_qPy(const HEVCSPS *sps, const int8_t *qp_y_tab, int xC, int yC) | |
| 139 | { | ||
| 140 | 123257782 | int log2_min_cb_size = sps->log2_min_cb_size; | |
| 141 | 123257782 | int x = xC >> log2_min_cb_size; | |
| 142 | 123257782 | int y = yC >> log2_min_cb_size; | |
| 143 | 123257782 | return qp_y_tab[x + y * sps->min_cb_width]; | |
| 144 | } | ||
| 145 | |||
| 146 | 577513 | static void copy_CTB(uint8_t *dst, const uint8_t *src, int width, int height, | |
| 147 | ptrdiff_t stride_dst, ptrdiff_t stride_src) | ||
| 148 | { | ||
| 149 | int i, j; | ||
| 150 | |||
| 151 |
2/2✓ Branch 0 taken 79472 times.
✓ Branch 1 taken 498041 times.
|
577513 | if (((intptr_t)dst | (intptr_t)src | stride_dst | stride_src) & 15) { |
| 152 |
2/2✓ Branch 0 taken 3234344 times.
✓ Branch 1 taken 79472 times.
|
3313816 | for (i = 0; i < height; i++) { |
| 153 |
2/2✓ Branch 0 taken 20718384 times.
✓ Branch 1 taken 3234344 times.
|
23952728 | for (j = 0; j < width - 7; j+=8) |
| 154 | 20718384 | AV_COPY64U(dst+j, src+j); | |
| 155 | 3234344 | dst += stride_dst; | |
| 156 | 3234344 | src += stride_src; | |
| 157 | } | ||
| 158 |
2/2✓ Branch 0 taken 79338 times.
✓ Branch 1 taken 134 times.
|
79472 | if (width&7) { |
| 159 | 79338 | dst += ((width>>3)<<3) - stride_dst * height; | |
| 160 | 79338 | src += ((width>>3)<<3) - stride_src * height; | |
| 161 | 79338 | width &= 7; | |
| 162 |
2/2✓ Branch 0 taken 3233272 times.
✓ Branch 1 taken 79338 times.
|
3312610 | for (i = 0; i < height; i++) { |
| 163 |
2/2✓ Branch 0 taken 6885424 times.
✓ Branch 1 taken 3233272 times.
|
10118696 | for (j = 0; j < width; j++) |
| 164 | 6885424 | dst[j] = src[j]; | |
| 165 | 3233272 | dst += stride_dst; | |
| 166 | 3233272 | src += stride_src; | |
| 167 | } | ||
| 168 | } | ||
| 169 | } else { | ||
| 170 |
2/2✓ Branch 0 taken 22527064 times.
✓ Branch 1 taken 498041 times.
|
23025105 | for (i = 0; i < height; i++) { |
| 171 |
2/2✓ Branch 0 taken 101790608 times.
✓ Branch 1 taken 22527064 times.
|
124317672 | for (j = 0; j < width; j+=16) |
| 172 | 101790608 | AV_COPY128(dst+j, src+j); | |
| 173 | 22527064 | dst += stride_dst; | |
| 174 | 22527064 | src += stride_src; | |
| 175 | } | ||
| 176 | } | ||
| 177 | 577513 | } | |
| 178 | |||
| 179 | 2115529 | static void copy_pixel(uint8_t *dst, const uint8_t *src, int pixel_shift) | |
| 180 | { | ||
| 181 |
2/2✓ Branch 0 taken 198877 times.
✓ Branch 1 taken 1916652 times.
|
2115529 | if (pixel_shift) |
| 182 | 198877 | *(uint16_t *)dst = *(uint16_t *)src; | |
| 183 | else | ||
| 184 | 1916652 | *dst = *src; | |
| 185 | 2115529 | } | |
| 186 | |||
| 187 | 1840185 | static void copy_vert(uint8_t *dst, const uint8_t *src, | |
| 188 | int pixel_shift, int height, | ||
| 189 | ptrdiff_t stride_dst, ptrdiff_t stride_src) | ||
| 190 | { | ||
| 191 | int i; | ||
| 192 |
2/2✓ Branch 0 taken 1679244 times.
✓ Branch 1 taken 160941 times.
|
1840185 | if (pixel_shift == 0) { |
| 193 |
2/2✓ Branch 0 taken 70853672 times.
✓ Branch 1 taken 1679244 times.
|
72532916 | for (i = 0; i < height; i++) { |
| 194 | 70853672 | *dst = *src; | |
| 195 | 70853672 | dst += stride_dst; | |
| 196 | 70853672 | src += stride_src; | |
| 197 | } | ||
| 198 | } else { | ||
| 199 |
2/2✓ Branch 0 taken 9906752 times.
✓ Branch 1 taken 160941 times.
|
10067693 | for (i = 0; i < height; i++) { |
| 200 | 9906752 | *(uint16_t *)dst = *(uint16_t *)src; | |
| 201 | 9906752 | dst += stride_dst; | |
| 202 | 9906752 | src += stride_src; | |
| 203 | } | ||
| 204 | } | ||
| 205 | 1840185 | } | |
| 206 | |||
| 207 | 680409 | static void copy_CTB_to_hv(const HEVCLayerContext *l, const HEVCSPS *sps, | |
| 208 | const uint8_t *src, | ||
| 209 | ptrdiff_t stride_src, int x, int y, int width, int height, | ||
| 210 | int c_idx, int x_ctb, int y_ctb) | ||
| 211 | { | ||
| 212 | 680409 | int sh = sps->pixel_shift; | |
| 213 | 680409 | int w = sps->width >> sps->hshift[c_idx]; | |
| 214 | 680409 | int h = sps->height >> sps->vshift[c_idx]; | |
| 215 | |||
| 216 | /* copy horizontal edges */ | ||
| 217 | 680409 | memcpy(l->sao_pixel_buffer_h[c_idx] + (((2 * y_ctb) * w + x) << sh), | |
| 218 | 680409 | src, width << sh); | |
| 219 | 680409 | memcpy(l->sao_pixel_buffer_h[c_idx] + (((2 * y_ctb + 1) * w + x) << sh), | |
| 220 | 680409 | src + stride_src * (height - 1), width << sh); | |
| 221 | |||
| 222 | /* copy vertical edges */ | ||
| 223 | 680409 | copy_vert(l->sao_pixel_buffer_v[c_idx] + (((2 * x_ctb) * h + y) << sh), src, sh, height, 1 << sh, stride_src); | |
| 224 | |||
| 225 | 680409 | copy_vert(l->sao_pixel_buffer_v[c_idx] + (((2 * x_ctb + 1) * h + y) << sh), src + ((width - 1) << sh), sh, height, 1 << sh, stride_src); | |
| 226 | 680409 | } | |
| 227 | |||
| 228 | 577513 | static void restore_tqb_pixels(const HEVCLayerContext *l, | |
| 229 | const HEVCPPS *pps, const HEVCSPS *sps, | ||
| 230 | uint8_t *src1, const uint8_t *dst1, | ||
| 231 | ptrdiff_t stride_src, ptrdiff_t stride_dst, | ||
| 232 | int x0, int y0, int width, int height, int c_idx) | ||
| 233 | { | ||
| 234 |
2/2✓ Branch 0 taken 574323 times.
✓ Branch 1 taken 3190 times.
|
577513 | if (pps->transquant_bypass_enable_flag || |
| 235 |
3/4✓ Branch 0 taken 52 times.
✓ Branch 1 taken 574271 times.
✓ Branch 2 taken 52 times.
✗ Branch 3 not taken.
|
574323 | (sps->pcm_loop_filter_disabled && sps->pcm_enabled)) { |
| 236 | int x, y; | ||
| 237 | 3242 | int min_pu_size = 1 << sps->log2_min_pu_size; | |
| 238 | 3242 | int hshift = sps->hshift[c_idx]; | |
| 239 | 3242 | int vshift = sps->vshift[c_idx]; | |
| 240 | 3242 | int x_min = ((x0 ) >> sps->log2_min_pu_size); | |
| 241 | 3242 | int y_min = ((y0 ) >> sps->log2_min_pu_size); | |
| 242 | 3242 | int x_max = ((x0 + width ) >> sps->log2_min_pu_size); | |
| 243 | 3242 | int y_max = ((y0 + height) >> sps->log2_min_pu_size); | |
| 244 | 3242 | int len = (min_pu_size >> hshift) << sps->pixel_shift; | |
| 245 |
2/2✓ Branch 0 taken 37372 times.
✓ Branch 1 taken 3242 times.
|
40614 | for (y = y_min; y < y_max; y++) { |
| 246 |
2/2✓ Branch 0 taken 489472 times.
✓ Branch 1 taken 37372 times.
|
526844 | for (x = x_min; x < x_max; x++) { |
| 247 |
2/2✓ Branch 0 taken 132 times.
✓ Branch 1 taken 489340 times.
|
489472 | if (l->is_pcm[y * sps->min_pu_width + x]) { |
| 248 | int n; | ||
| 249 | 132 | uint8_t *src = src1 + | |
| 250 | 132 | (((y << sps->log2_min_pu_size) - y0) >> vshift) * stride_src + | |
| 251 | 132 | ((((x << sps->log2_min_pu_size) - x0) >> hshift) << sps->pixel_shift); | |
| 252 | 132 | const uint8_t *dst = dst1 + | |
| 253 | 132 | (((y << sps->log2_min_pu_size) - y0) >> vshift) * stride_dst + | |
| 254 | 132 | ((((x << sps->log2_min_pu_size) - x0) >> hshift) << sps->pixel_shift); | |
| 255 | |||
| 256 |
2/2✓ Branch 0 taken 352 times.
✓ Branch 1 taken 132 times.
|
484 | for (n = 0; n < (min_pu_size >> vshift); n++) { |
| 257 | 352 | memcpy(src, dst, len); | |
| 258 | 352 | src += stride_src; | |
| 259 | 352 | dst += stride_dst; | |
| 260 | } | ||
| 261 | } | ||
| 262 | } | ||
| 263 | } | ||
| 264 | } | ||
| 265 | 577513 | } | |
| 266 | |||
| 267 | #define CTB(tab, x, y) ((tab)[(y) * sps->ctb_width + (x)]) | ||
| 268 | |||
| 269 | 1724555 | static void sao_filter_CTB(HEVCLocalContext *lc, const HEVCLayerContext *l, | |
| 270 | const HEVCContext *s, | ||
| 271 | const HEVCPPS *pps, const HEVCSPS *sps, | ||
| 272 | int x, int y) | ||
| 273 | { | ||
| 274 | static const uint8_t sao_tab[8] = { 0, 1, 2, 2, 3, 3, 4, 4 }; | ||
| 275 | int c_idx; | ||
| 276 | int edges[4]; // 0 left 1 top 2 right 3 bottom | ||
| 277 | 1724555 | int x_ctb = x >> sps->log2_ctb_size; | |
| 278 | 1724555 | int y_ctb = y >> sps->log2_ctb_size; | |
| 279 | 1724555 | int ctb_addr_rs = y_ctb * sps->ctb_width + x_ctb; | |
| 280 | 1724555 | int ctb_addr_ts = pps->ctb_addr_rs_to_ts[ctb_addr_rs]; | |
| 281 | 1724555 | SAOParams *sao = &CTB(l->sao, x_ctb, y_ctb); | |
| 282 | // flags indicating unfilterable edges | ||
| 283 | 1724555 | uint8_t vert_edge[] = { 0, 0 }; | |
| 284 | 1724555 | uint8_t horiz_edge[] = { 0, 0 }; | |
| 285 | 1724555 | uint8_t diag_edge[] = { 0, 0, 0, 0 }; | |
| 286 | 1724555 | uint8_t lfase = CTB(l->filter_slice_edges, x_ctb, y_ctb); | |
| 287 |
2/2✓ Branch 0 taken 545136 times.
✓ Branch 1 taken 1179419 times.
|
2269691 | uint8_t no_tile_filter = pps->tiles_enabled_flag && |
| 288 |
2/2✓ Branch 0 taken 14824 times.
✓ Branch 1 taken 530312 times.
|
545136 | !pps->loop_filter_across_tiles_enabled_flag; |
| 289 |
4/4✓ Branch 0 taken 1709731 times.
✓ Branch 1 taken 14824 times.
✓ Branch 2 taken 116844 times.
✓ Branch 3 taken 1592887 times.
|
1724555 | uint8_t restore = no_tile_filter || !lfase; |
| 290 | 1724555 | uint8_t left_tile_edge = 0; | |
| 291 | 1724555 | uint8_t right_tile_edge = 0; | |
| 292 | 1724555 | uint8_t up_tile_edge = 0; | |
| 293 | 1724555 | uint8_t bottom_tile_edge = 0; | |
| 294 | |||
| 295 | 1724555 | edges[0] = x_ctb == 0; | |
| 296 | 1724555 | edges[1] = y_ctb == 0; | |
| 297 | 1724555 | edges[2] = x_ctb == sps->ctb_width - 1; | |
| 298 | 1724555 | edges[3] = y_ctb == sps->ctb_height - 1; | |
| 299 | |||
| 300 |
2/2✓ Branch 0 taken 131668 times.
✓ Branch 1 taken 1592887 times.
|
1724555 | if (restore) { |
| 301 |
2/2✓ Branch 0 taken 126020 times.
✓ Branch 1 taken 5648 times.
|
131668 | if (!edges[0]) { |
| 302 |
4/4✓ Branch 0 taken 14448 times.
✓ Branch 1 taken 111572 times.
✓ Branch 2 taken 744 times.
✓ Branch 3 taken 13704 times.
|
126020 | left_tile_edge = no_tile_filter && pps->tile_id[ctb_addr_ts] != pps->tile_id[pps->ctb_addr_rs_to_ts[ctb_addr_rs-1]]; |
| 303 |
6/6✓ Branch 0 taken 111572 times.
✓ Branch 1 taken 14448 times.
✓ Branch 2 taken 111388 times.
✓ Branch 3 taken 184 times.
✓ Branch 4 taken 744 times.
✓ Branch 5 taken 125092 times.
|
126020 | vert_edge[0] = (!lfase && CTB(l->tab_slice_address, x_ctb, y_ctb) != CTB(l->tab_slice_address, x_ctb - 1, y_ctb)) || left_tile_edge; |
| 304 | } | ||
| 305 |
2/2✓ Branch 0 taken 126021 times.
✓ Branch 1 taken 5647 times.
|
131668 | if (!edges[2]) { |
| 306 |
4/4✓ Branch 0 taken 14448 times.
✓ Branch 1 taken 111573 times.
✓ Branch 2 taken 744 times.
✓ Branch 3 taken 13704 times.
|
126021 | right_tile_edge = no_tile_filter && pps->tile_id[ctb_addr_ts] != pps->tile_id[pps->ctb_addr_rs_to_ts[ctb_addr_rs+1]]; |
| 307 |
6/6✓ Branch 0 taken 111573 times.
✓ Branch 1 taken 14448 times.
✓ Branch 2 taken 111389 times.
✓ Branch 3 taken 184 times.
✓ Branch 4 taken 744 times.
✓ Branch 5 taken 125093 times.
|
126021 | vert_edge[1] = (!lfase && CTB(l->tab_slice_address, x_ctb, y_ctb) != CTB(l->tab_slice_address, x_ctb + 1, y_ctb)) || right_tile_edge; |
| 308 | } | ||
| 309 |
2/2✓ Branch 0 taken 121868 times.
✓ Branch 1 taken 9800 times.
|
131668 | if (!edges[1]) { |
| 310 |
4/4✓ Branch 0 taken 14171 times.
✓ Branch 1 taken 107697 times.
✓ Branch 2 taken 1280 times.
✓ Branch 3 taken 12891 times.
|
121868 | up_tile_edge = no_tile_filter && pps->tile_id[ctb_addr_ts] != pps->tile_id[pps->ctb_addr_rs_to_ts[ctb_addr_rs - sps->ctb_width]]; |
| 311 |
6/6✓ Branch 0 taken 107697 times.
✓ Branch 1 taken 14171 times.
✓ Branch 2 taken 106417 times.
✓ Branch 3 taken 1280 times.
✓ Branch 4 taken 1280 times.
✓ Branch 5 taken 119308 times.
|
121868 | horiz_edge[0] = (!lfase && CTB(l->tab_slice_address, x_ctb, y_ctb) != CTB(l->tab_slice_address, x_ctb, y_ctb - 1)) || up_tile_edge; |
| 312 | } | ||
| 313 |
2/2✓ Branch 0 taken 121898 times.
✓ Branch 1 taken 9770 times.
|
131668 | if (!edges[3]) { |
| 314 |
4/4✓ Branch 0 taken 14171 times.
✓ Branch 1 taken 107727 times.
✓ Branch 2 taken 1280 times.
✓ Branch 3 taken 12891 times.
|
121898 | bottom_tile_edge = no_tile_filter && pps->tile_id[ctb_addr_ts] != pps->tile_id[pps->ctb_addr_rs_to_ts[ctb_addr_rs + sps->ctb_width]]; |
| 315 |
6/6✓ Branch 0 taken 107727 times.
✓ Branch 1 taken 14171 times.
✓ Branch 2 taken 106447 times.
✓ Branch 3 taken 1280 times.
✓ Branch 4 taken 1280 times.
✓ Branch 5 taken 119338 times.
|
121898 | horiz_edge[1] = (!lfase && CTB(l->tab_slice_address, x_ctb, y_ctb) != CTB(l->tab_slice_address, x_ctb, y_ctb + 1)) || bottom_tile_edge; |
| 316 | } | ||
| 317 |
4/4✓ Branch 0 taken 126020 times.
✓ Branch 1 taken 5648 times.
✓ Branch 2 taken 117011 times.
✓ Branch 3 taken 9009 times.
|
131668 | if (!edges[0] && !edges[1]) { |
| 318 |
8/8✓ Branch 0 taken 103199 times.
✓ Branch 1 taken 13812 times.
✓ Branch 2 taken 101791 times.
✓ Branch 3 taken 1408 times.
✓ Branch 4 taken 114892 times.
✓ Branch 5 taken 711 times.
✓ Branch 6 taken 1184 times.
✓ Branch 7 taken 113708 times.
|
117011 | diag_edge[0] = (!lfase && CTB(l->tab_slice_address, x_ctb, y_ctb) != CTB(l->tab_slice_address, x_ctb - 1, y_ctb - 1)) || left_tile_edge || up_tile_edge; |
| 319 | } | ||
| 320 |
4/4✓ Branch 0 taken 121868 times.
✓ Branch 1 taken 9800 times.
✓ Branch 2 taken 117012 times.
✓ Branch 3 taken 4856 times.
|
131668 | if (!edges[1] && !edges[2]) { |
| 321 |
8/8✓ Branch 0 taken 103200 times.
✓ Branch 1 taken 13812 times.
✓ Branch 2 taken 101792 times.
✓ Branch 3 taken 1408 times.
✓ Branch 4 taken 114893 times.
✓ Branch 5 taken 711 times.
✓ Branch 6 taken 1184 times.
✓ Branch 7 taken 113709 times.
|
117012 | diag_edge[1] = (!lfase && CTB(l->tab_slice_address, x_ctb, y_ctb) != CTB(l->tab_slice_address, x_ctb + 1, y_ctb - 1)) || right_tile_edge || up_tile_edge; |
| 322 | } | ||
| 323 |
4/4✓ Branch 0 taken 126021 times.
✓ Branch 1 taken 5647 times.
✓ Branch 2 taken 117041 times.
✓ Branch 3 taken 8980 times.
|
131668 | if (!edges[2] && !edges[3]) { |
| 324 |
8/8✓ Branch 0 taken 103229 times.
✓ Branch 1 taken 13812 times.
✓ Branch 2 taken 101821 times.
✓ Branch 3 taken 1408 times.
✓ Branch 4 taken 114922 times.
✓ Branch 5 taken 711 times.
✓ Branch 6 taken 1184 times.
✓ Branch 7 taken 113738 times.
|
117041 | diag_edge[2] = (!lfase && CTB(l->tab_slice_address, x_ctb, y_ctb) != CTB(l->tab_slice_address, x_ctb + 1, y_ctb + 1)) || right_tile_edge || bottom_tile_edge; |
| 325 | } | ||
| 326 |
4/4✓ Branch 0 taken 126020 times.
✓ Branch 1 taken 5648 times.
✓ Branch 2 taken 117040 times.
✓ Branch 3 taken 8980 times.
|
131668 | if (!edges[0] && !edges[3]) { |
| 327 |
8/8✓ Branch 0 taken 103228 times.
✓ Branch 1 taken 13812 times.
✓ Branch 2 taken 101820 times.
✓ Branch 3 taken 1408 times.
✓ Branch 4 taken 114921 times.
✓ Branch 5 taken 711 times.
✓ Branch 6 taken 1184 times.
✓ Branch 7 taken 113737 times.
|
117040 | diag_edge[3] = (!lfase && CTB(l->tab_slice_address, x_ctb, y_ctb) != CTB(l->tab_slice_address, x_ctb - 1, y_ctb + 1)) || left_tile_edge || bottom_tile_edge; |
| 328 | } | ||
| 329 | } | ||
| 330 | |||
| 331 |
4/4✓ Branch 0 taken 6898124 times.
✓ Branch 1 taken 48 times.
✓ Branch 2 taken 5173617 times.
✓ Branch 3 taken 1724555 times.
|
6898172 | for (c_idx = 0; c_idx < (sps->chroma_format_idc ? 3 : 1); c_idx++) { |
| 332 | 5173617 | int x0 = x >> sps->hshift[c_idx]; | |
| 333 | 5173617 | int y0 = y >> sps->vshift[c_idx]; | |
| 334 | 5173617 | ptrdiff_t stride_src = s->cur_frame->f->linesize[c_idx]; | |
| 335 | 5173617 | int ctb_size_h = (1 << (sps->log2_ctb_size)) >> sps->hshift[c_idx]; | |
| 336 | 5173617 | int ctb_size_v = (1 << (sps->log2_ctb_size)) >> sps->vshift[c_idx]; | |
| 337 | 5173617 | int width = FFMIN(ctb_size_h, (sps->width >> sps->hshift[c_idx]) - x0); | |
| 338 | 5173617 | int height = FFMIN(ctb_size_v, (sps->height >> sps->vshift[c_idx]) - y0); | |
| 339 | 5173617 | int tab = sao_tab[(FFALIGN(width, 8) >> 3) - 1]; | |
| 340 | 5173617 | uint8_t *src = &s->cur_frame->f->data[c_idx][y0 * stride_src + (x0 << sps->pixel_shift)]; | |
| 341 | ptrdiff_t stride_dst; | ||
| 342 | uint8_t *dst; | ||
| 343 | |||
| 344 |
3/3✓ Branch 0 taken 103414 times.
✓ Branch 1 taken 576995 times.
✓ Branch 2 taken 4493208 times.
|
5173617 | switch (sao->type_idx[c_idx]) { |
| 345 | 103414 | case SAO_BAND: | |
| 346 | 103414 | copy_CTB_to_hv(l, sps, src, stride_src, x0, y0, width, height, c_idx, | |
| 347 | x_ctb, y_ctb); | ||
| 348 |
2/2✓ Branch 0 taken 102900 times.
✓ Branch 1 taken 514 times.
|
103414 | if (pps->transquant_bypass_enable_flag || |
| 349 |
3/4✓ Branch 0 taken 4 times.
✓ Branch 1 taken 102896 times.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
|
102900 | (sps->pcm_loop_filter_disabled && sps->pcm_enabled)) { |
| 350 | 518 | dst = lc->edge_emu_buffer; | |
| 351 | 518 | stride_dst = 2*MAX_PB_SIZE; | |
| 352 | 518 | copy_CTB(dst, src, width << sps->pixel_shift, height, stride_dst, stride_src); | |
| 353 | 518 | s->hevcdsp.sao_band_filter[tab](src, dst, stride_src, stride_dst, | |
| 354 | 518 | sao->offset_val[c_idx], sao->band_position[c_idx], | |
| 355 | width, height); | ||
| 356 | 518 | restore_tqb_pixels(l, pps, sps, src, dst, stride_src, stride_dst, | |
| 357 | x, y, width, height, c_idx); | ||
| 358 | } else { | ||
| 359 | 102896 | s->hevcdsp.sao_band_filter[tab](src, src, stride_src, stride_src, | |
| 360 | 102896 | sao->offset_val[c_idx], sao->band_position[c_idx], | |
| 361 | width, height); | ||
| 362 | } | ||
| 363 | 103414 | sao->type_idx[c_idx] = SAO_APPLIED; | |
| 364 | 103414 | break; | |
| 365 | 576995 | case SAO_EDGE: | |
| 366 | { | ||
| 367 | 576995 | int w = sps->width >> sps->hshift[c_idx]; | |
| 368 | 576995 | int h = sps->height >> sps->vshift[c_idx]; | |
| 369 | 576995 | int left_edge = edges[0]; | |
| 370 | 576995 | int top_edge = edges[1]; | |
| 371 | 576995 | int right_edge = edges[2]; | |
| 372 | 576995 | int bottom_edge = edges[3]; | |
| 373 | 576995 | int sh = sps->pixel_shift; | |
| 374 | int left_pixels, right_pixels; | ||
| 375 | |||
| 376 | 576995 | stride_dst = 2*MAX_PB_SIZE + AV_INPUT_BUFFER_PADDING_SIZE; | |
| 377 | 576995 | dst = lc->edge_emu_buffer + stride_dst + AV_INPUT_BUFFER_PADDING_SIZE; | |
| 378 | |||
| 379 |
2/2✓ Branch 0 taken 550636 times.
✓ Branch 1 taken 26359 times.
|
576995 | if (!top_edge) { |
| 380 | 550636 | int left = 1 - left_edge; | |
| 381 | 550636 | int right = 1 - right_edge; | |
| 382 | const uint8_t *src1[2]; | ||
| 383 | uint8_t *dst1; | ||
| 384 | int src_idx, pos; | ||
| 385 | |||
| 386 | 550636 | dst1 = dst - stride_dst - (left << sh); | |
| 387 | 550636 | src1[0] = src - stride_src - (left << sh); | |
| 388 | 550636 | src1[1] = l->sao_pixel_buffer_h[c_idx] + (((2 * y_ctb - 1) * w + x0 - left) << sh); | |
| 389 | 550636 | pos = 0; | |
| 390 |
2/2✓ Branch 0 taken 532609 times.
✓ Branch 1 taken 18027 times.
|
550636 | if (left) { |
| 391 | 532609 | src_idx = (CTB(l->sao, x_ctb-1, y_ctb-1).type_idx[c_idx] == | |
| 392 | SAO_APPLIED); | ||
| 393 | 532609 | copy_pixel(dst1, src1[src_idx], sh); | |
| 394 | 532609 | pos += (1 << sh); | |
| 395 | } | ||
| 396 | 550636 | src_idx = (CTB(l->sao, x_ctb, y_ctb-1).type_idx[c_idx] == | |
| 397 | SAO_APPLIED); | ||
| 398 | 550636 | memcpy(dst1 + pos, src1[src_idx] + pos, width << sh); | |
| 399 |
2/2✓ Branch 0 taken 530321 times.
✓ Branch 1 taken 20315 times.
|
550636 | if (right) { |
| 400 | 530321 | pos += width << sh; | |
| 401 | 530321 | src_idx = (CTB(l->sao, x_ctb+1, y_ctb-1).type_idx[c_idx] == | |
| 402 | SAO_APPLIED); | ||
| 403 | 530321 | copy_pixel(dst1 + pos, src1[src_idx] + pos, sh); | |
| 404 | } | ||
| 405 | } | ||
| 406 |
2/2✓ Branch 0 taken 544946 times.
✓ Branch 1 taken 32049 times.
|
576995 | if (!bottom_edge) { |
| 407 | 544946 | int left = 1 - left_edge; | |
| 408 | 544946 | int right = 1 - right_edge; | |
| 409 | const uint8_t *src1[2]; | ||
| 410 | uint8_t *dst1; | ||
| 411 | int src_idx, pos; | ||
| 412 | |||
| 413 | 544946 | dst1 = dst + height * stride_dst - (left << sh); | |
| 414 | 544946 | src1[0] = src + height * stride_src - (left << sh); | |
| 415 | 544946 | src1[1] = l->sao_pixel_buffer_h[c_idx] + (((2 * y_ctb + 2) * w + x0 - left) << sh); | |
| 416 | 544946 | pos = 0; | |
| 417 |
2/2✓ Branch 0 taken 527552 times.
✓ Branch 1 taken 17394 times.
|
544946 | if (left) { |
| 418 | 527552 | src_idx = (CTB(l->sao, x_ctb-1, y_ctb+1).type_idx[c_idx] == | |
| 419 | SAO_APPLIED); | ||
| 420 | 527552 | copy_pixel(dst1, src1[src_idx], sh); | |
| 421 | 527552 | pos += (1 << sh); | |
| 422 | } | ||
| 423 | 544946 | src_idx = (CTB(l->sao, x_ctb, y_ctb+1).type_idx[c_idx] == | |
| 424 | SAO_APPLIED); | ||
| 425 | 544946 | memcpy(dst1 + pos, src1[src_idx] + pos, width << sh); | |
| 426 |
2/2✓ Branch 0 taken 525047 times.
✓ Branch 1 taken 19899 times.
|
544946 | if (right) { |
| 427 | 525047 | pos += width << sh; | |
| 428 | 525047 | src_idx = (CTB(l->sao, x_ctb+1, y_ctb+1).type_idx[c_idx] == | |
| 429 | SAO_APPLIED); | ||
| 430 | 525047 | copy_pixel(dst1 + pos, src1[src_idx] + pos, sh); | |
| 431 | } | ||
| 432 | } | ||
| 433 | 576995 | left_pixels = 0; | |
| 434 |
2/2✓ Branch 0 taken 557107 times.
✓ Branch 1 taken 19888 times.
|
576995 | if (!left_edge) { |
| 435 |
2/2✓ Branch 0 taken 479367 times.
✓ Branch 1 taken 77740 times.
|
557107 | if (CTB(l->sao, x_ctb-1, y_ctb).type_idx[c_idx] == SAO_APPLIED) { |
| 436 | 479367 | copy_vert(dst - (1 << sh), | |
| 437 | 479367 | l->sao_pixel_buffer_v[c_idx] + (((2 * x_ctb - 1) * h + y0) << sh), | |
| 438 | 479367 | sh, height, stride_dst, 1 << sh); | |
| 439 | } else { | ||
| 440 | 77740 | left_pixels = 1; | |
| 441 | } | ||
| 442 | } | ||
| 443 | 576995 | right_pixels = 0; | |
| 444 |
2/2✓ Branch 0 taken 554675 times.
✓ Branch 1 taken 22320 times.
|
576995 | if (!right_edge) { |
| 445 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 554675 times.
|
554675 | if (CTB(l->sao, x_ctb+1, y_ctb).type_idx[c_idx] == SAO_APPLIED) { |
| 446 | ✗ | copy_vert(dst + (width << sh), | |
| 447 | ✗ | l->sao_pixel_buffer_v[c_idx] + (((2 * x_ctb + 2) * h + y0) << sh), | |
| 448 | ✗ | sh, height, stride_dst, 1 << sh); | |
| 449 | } else { | ||
| 450 | 554675 | right_pixels = 1; | |
| 451 | } | ||
| 452 | } | ||
| 453 | |||
| 454 | 576995 | copy_CTB(dst - (left_pixels << sh), | |
| 455 | 576995 | src - (left_pixels << sh), | |
| 456 | 576995 | (width + left_pixels + right_pixels) << sh, | |
| 457 | height, stride_dst, stride_src); | ||
| 458 | |||
| 459 | 576995 | copy_CTB_to_hv(l, sps, src, stride_src, x0, y0, width, height, c_idx, | |
| 460 | x_ctb, y_ctb); | ||
| 461 | 576995 | s->hevcdsp.sao_edge_filter[tab](src, dst, stride_src, sao->offset_val[c_idx], | |
| 462 | sao->eo_class[c_idx], width, height); | ||
| 463 | 576995 | s->hevcdsp.sao_edge_restore[restore](src, dst, | |
| 464 | stride_src, stride_dst, | ||
| 465 | sao, | ||
| 466 | edges, width, | ||
| 467 | height, c_idx, | ||
| 468 | vert_edge, | ||
| 469 | horiz_edge, | ||
| 470 | diag_edge); | ||
| 471 | 576995 | restore_tqb_pixels(l, pps, sps, src, dst, stride_src, stride_dst, | |
| 472 | x, y, width, height, c_idx); | ||
| 473 | 576995 | sao->type_idx[c_idx] = SAO_APPLIED; | |
| 474 | 576995 | break; | |
| 475 | } | ||
| 476 | } | ||
| 477 | } | ||
| 478 | 1724555 | } | |
| 479 | |||
| 480 | 1729548 | static int get_pcm(const HEVCSPS *sps, const uint8_t *is_pcm, int x, int y) | |
| 481 | { | ||
| 482 | 1729548 | int log2_min_pu_size = sps->log2_min_pu_size; | |
| 483 | int x_pu, y_pu; | ||
| 484 | |||
| 485 |
2/4✓ Branch 0 taken 1729548 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 1729548 times.
|
1729548 | if (x < 0 || y < 0) |
| 486 | ✗ | return 2; | |
| 487 | |||
| 488 | 1729548 | x_pu = x >> log2_min_pu_size; | |
| 489 | 1729548 | y_pu = y >> log2_min_pu_size; | |
| 490 | |||
| 491 |
3/4✓ Branch 0 taken 1729548 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 932 times.
✓ Branch 3 taken 1728616 times.
|
1729548 | if (x_pu >= sps->min_pu_width || y_pu >= sps->min_pu_height) |
| 492 | 932 | return 2; | |
| 493 | 1728616 | return is_pcm[y_pu * sps->min_pu_width + x_pu]; | |
| 494 | } | ||
| 495 | |||
| 496 | #define TC_CALC(qp, bs) \ | ||
| 497 | tctable[av_clip((qp) + DEFAULT_INTRA_TC_OFFSET * ((bs) - 1) + \ | ||
| 498 | (tc_offset & -2), \ | ||
| 499 | 0, MAX_QP + DEFAULT_INTRA_TC_OFFSET)] | ||
| 500 | |||
| 501 | 1939282 | static void deblocking_filter_CTB(const HEVCContext *s, const HEVCLayerContext *l, | |
| 502 | const HEVCPPS *pps, const HEVCSPS *sps, | ||
| 503 | int x0, int y0) | ||
| 504 | { | ||
| 505 | 1939282 | uint8_t **data = s->cur_frame->f->data; | |
| 506 | 1939282 | int *linesize = s->cur_frame->f->linesize; | |
| 507 | |||
| 508 | uint8_t *src; | ||
| 509 | int x, y; | ||
| 510 | int chroma, beta; | ||
| 511 | int32_t c_tc[2], tc[2]; | ||
| 512 | 1939282 | uint8_t no_p[2] = { 0 }; | |
| 513 | 1939282 | uint8_t no_q[2] = { 0 }; | |
| 514 | |||
| 515 | 1939282 | int log2_ctb_size = sps->log2_ctb_size; | |
| 516 | int x_end, x_end2, y_end; | ||
| 517 | 1939282 | int ctb_size = 1 << log2_ctb_size; | |
| 518 | 1939282 | int ctb = (x0 >> log2_ctb_size) + | |
| 519 | 1939282 | (y0 >> log2_ctb_size) * sps->ctb_width; | |
| 520 | 1939282 | int cur_tc_offset = l->deblock[ctb].tc_offset; | |
| 521 | 1939282 | int cur_beta_offset = l->deblock[ctb].beta_offset; | |
| 522 | int left_tc_offset, left_beta_offset; | ||
| 523 | int tc_offset, beta_offset; | ||
| 524 | 3960352 | int pcmf = (sps->pcm_enabled && | |
| 525 |
4/4✓ Branch 0 taken 81788 times.
✓ Branch 1 taken 1857494 times.
✓ Branch 2 taken 81760 times.
✓ Branch 3 taken 28 times.
|
3878536 | sps->pcm_loop_filter_disabled) || |
| 526 |
2/2✓ Branch 0 taken 4152 times.
✓ Branch 1 taken 1935102 times.
|
1939254 | pps->transquant_bypass_enable_flag; |
| 527 | |||
| 528 |
2/2✓ Branch 0 taken 1852548 times.
✓ Branch 1 taken 86734 times.
|
1939282 | if (x0) { |
| 529 | 1852548 | left_tc_offset = l->deblock[ctb - 1].tc_offset; | |
| 530 | 1852548 | left_beta_offset = l->deblock[ctb - 1].beta_offset; | |
| 531 | } else { | ||
| 532 | 86734 | left_tc_offset = 0; | |
| 533 | 86734 | left_beta_offset = 0; | |
| 534 | } | ||
| 535 | |||
| 536 | 1939282 | x_end = x0 + ctb_size; | |
| 537 |
2/2✓ Branch 0 taken 25100 times.
✓ Branch 1 taken 1914182 times.
|
1939282 | if (x_end > sps->width) |
| 538 | 25100 | x_end = sps->width; | |
| 539 | 1939282 | y_end = y0 + ctb_size; | |
| 540 |
2/2✓ Branch 0 taken 96867 times.
✓ Branch 1 taken 1842415 times.
|
1939282 | if (y_end > sps->height) |
| 541 | 96867 | y_end = sps->height; | |
| 542 | |||
| 543 | 1939282 | tc_offset = cur_tc_offset; | |
| 544 | 1939282 | beta_offset = cur_beta_offset; | |
| 545 | |||
| 546 | 1939282 | x_end2 = x_end; | |
| 547 |
2/2✓ Branch 0 taken 1852549 times.
✓ Branch 1 taken 86733 times.
|
1939282 | if (x_end2 != sps->width) |
| 548 | 1852549 | x_end2 -= 8; | |
| 549 |
2/2✓ Branch 0 taken 12580416 times.
✓ Branch 1 taken 1939282 times.
|
14519698 | for (y = y0; y < y_end; y += 8) { |
| 550 | // vertical filtering luma | ||
| 551 |
4/4✓ Branch 0 taken 11971963 times.
✓ Branch 1 taken 608453 times.
✓ Branch 2 taken 89460123 times.
✓ Branch 3 taken 12580416 times.
|
102040539 | for (x = x0 ? x0 : 8; x < x_end; x += 8) { |
| 552 | 89460123 | const int bs0 = l->vertical_bs[(x + y * l->bs_width) >> 2]; | |
| 553 | 89460123 | const int bs1 = l->vertical_bs[(x + (y + 4) * l->bs_width) >> 2]; | |
| 554 |
4/4✓ Branch 0 taken 69606203 times.
✓ Branch 1 taken 19853920 times.
✓ Branch 2 taken 92796 times.
✓ Branch 3 taken 69513407 times.
|
89460123 | if (bs0 || bs1) { |
| 555 | 19946716 | const int qp = (get_qPy(sps, l->qp_y_tab, x - 1, y) + | |
| 556 | 19946716 | get_qPy(sps, l->qp_y_tab, x, y) + 1) >> 1; | |
| 557 | |||
| 558 | 19946716 | beta = betatable[av_clip(qp + beta_offset, 0, MAX_QP)]; | |
| 559 | |||
| 560 |
2/2✓ Branch 0 taken 19853920 times.
✓ Branch 1 taken 92796 times.
|
19946716 | tc[0] = bs0 ? TC_CALC(qp, bs0) : 0; |
| 561 |
2/2✓ Branch 0 taken 19847145 times.
✓ Branch 1 taken 99571 times.
|
19946716 | tc[1] = bs1 ? TC_CALC(qp, bs1) : 0; |
| 562 | 19946716 | src = &data[LUMA][y * linesize[LUMA] + (x << sps->pixel_shift)]; | |
| 563 |
2/2✓ Branch 0 taken 162338 times.
✓ Branch 1 taken 19784378 times.
|
19946716 | if (pcmf) { |
| 564 | 162338 | no_p[0] = get_pcm(sps, l->is_pcm, x - 1, y); | |
| 565 | 162338 | no_p[1] = get_pcm(sps, l->is_pcm, x - 1, y + 4); | |
| 566 | 162338 | no_q[0] = get_pcm(sps, l->is_pcm, x, y); | |
| 567 | 162338 | no_q[1] = get_pcm(sps, l->is_pcm, x, y + 4); | |
| 568 | 162338 | s->hevcdsp.hevc_v_loop_filter_luma_c(src, linesize[LUMA], | |
| 569 | beta, tc, no_p, no_q); | ||
| 570 | } else | ||
| 571 | 19784378 | s->hevcdsp.hevc_v_loop_filter_luma(src, linesize[LUMA], | |
| 572 | beta, tc, no_p, no_q); | ||
| 573 | } | ||
| 574 | } | ||
| 575 | |||
| 576 |
2/2✓ Branch 0 taken 138142 times.
✓ Branch 1 taken 12442274 times.
|
12580416 | if(!y) |
| 577 | 138142 | continue; | |
| 578 | |||
| 579 | // horizontal filtering luma | ||
| 580 |
4/4✓ Branch 0 taken 11844167 times.
✓ Branch 1 taken 598107 times.
✓ Branch 2 taken 89085920 times.
✓ Branch 3 taken 12442274 times.
|
101528194 | for (x = x0 ? x0 - 8 : 0; x < x_end2; x += 8) { |
| 581 | 89085920 | const int bs0 = l->horizontal_bs[( x + y * l->bs_width) >> 2]; | |
| 582 | 89085920 | const int bs1 = l->horizontal_bs[((x + 4) + y * l->bs_width) >> 2]; | |
| 583 |
4/4✓ Branch 0 taken 68876019 times.
✓ Branch 1 taken 20209901 times.
✓ Branch 2 taken 110436 times.
✓ Branch 3 taken 68765583 times.
|
89085920 | if (bs0 || bs1) { |
| 584 | 20320337 | const int qp = (get_qPy(sps, l->qp_y_tab, x, y - 1) + | |
| 585 | 20320337 | get_qPy(sps, l->qp_y_tab, x, y) + 1) >> 1; | |
| 586 | |||
| 587 |
2/2✓ Branch 0 taken 17512197 times.
✓ Branch 1 taken 2808140 times.
|
20320337 | tc_offset = x >= x0 ? cur_tc_offset : left_tc_offset; |
| 588 |
2/2✓ Branch 0 taken 17512197 times.
✓ Branch 1 taken 2808140 times.
|
20320337 | beta_offset = x >= x0 ? cur_beta_offset : left_beta_offset; |
| 589 | |||
| 590 | 20320337 | beta = betatable[av_clip(qp + beta_offset, 0, MAX_QP)]; | |
| 591 |
2/2✓ Branch 0 taken 20209901 times.
✓ Branch 1 taken 110436 times.
|
20320337 | tc[0] = bs0 ? TC_CALC(qp, bs0) : 0; |
| 592 |
2/2✓ Branch 0 taken 20194875 times.
✓ Branch 1 taken 125462 times.
|
20320337 | tc[1] = bs1 ? TC_CALC(qp, bs1) : 0; |
| 593 | 20320337 | src = &data[LUMA][y * linesize[LUMA] + (x << sps->pixel_shift)]; | |
| 594 |
2/2✓ Branch 0 taken 163973 times.
✓ Branch 1 taken 20156364 times.
|
20320337 | if (pcmf) { |
| 595 | 163973 | no_p[0] = get_pcm(sps, l->is_pcm, x, y - 1); | |
| 596 | 163973 | no_p[1] = get_pcm(sps, l->is_pcm, x + 4, y - 1); | |
| 597 | 163973 | no_q[0] = get_pcm(sps, l->is_pcm, x, y); | |
| 598 | 163973 | no_q[1] = get_pcm(sps, l->is_pcm, x + 4, y); | |
| 599 | 163973 | s->hevcdsp.hevc_h_loop_filter_luma_c(src, linesize[LUMA], | |
| 600 | beta, tc, no_p, no_q); | ||
| 601 | } else | ||
| 602 | 20156364 | s->hevcdsp.hevc_h_loop_filter_luma(src, linesize[LUMA], | |
| 603 | beta, tc, no_p, no_q); | ||
| 604 | } | ||
| 605 | } | ||
| 606 | } | ||
| 607 | |||
| 608 |
2/2✓ Branch 0 taken 1939258 times.
✓ Branch 1 taken 24 times.
|
1939282 | if (sps->chroma_format_idc) { |
| 609 |
2/2✓ Branch 0 taken 3878516 times.
✓ Branch 1 taken 1939258 times.
|
5817774 | for (chroma = 1; chroma <= 2; chroma++) { |
| 610 | 3878516 | int h = 1 << sps->hshift[chroma]; | |
| 611 | 3878516 | int v = 1 << sps->vshift[chroma]; | |
| 612 | |||
| 613 | // vertical filtering chroma | ||
| 614 |
2/2✓ Branch 0 taken 12992636 times.
✓ Branch 1 taken 3878516 times.
|
16871152 | for (y = y0; y < y_end; y += (8 * v)) { |
| 615 |
4/4✓ Branch 0 taken 620528 times.
✓ Branch 1 taken 12372108 times.
✓ Branch 2 taken 46808688 times.
✓ Branch 3 taken 12992636 times.
|
59801324 | for (x = x0 ? x0 : 8 * h; x < x_end; x += (8 * h)) { |
| 616 | 46808688 | const int bs0 = l->vertical_bs[(x + y * l->bs_width) >> 2]; | |
| 617 | 46808688 | const int bs1 = l->vertical_bs[(x + (y + (4 * v)) * l->bs_width) >> 2]; | |
| 618 | |||
| 619 |
4/4✓ Branch 0 taken 41443976 times.
✓ Branch 1 taken 5364712 times.
✓ Branch 2 taken 190360 times.
✓ Branch 3 taken 41253616 times.
|
46808688 | if ((bs0 == 2) || (bs1 == 2)) { |
| 620 | 5555072 | const int qp0 = (get_qPy(sps, l->qp_y_tab, x - 1, y) + | |
| 621 | 5555072 | get_qPy(sps, l->qp_y_tab, x, y) + 1) >> 1; | |
| 622 | 5555072 | const int qp1 = (get_qPy(sps, l->qp_y_tab, x - 1, y + (4 * v)) + | |
| 623 | 5555072 | get_qPy(sps, l->qp_y_tab, x, y + (4 * v)) + 1) >> 1; | |
| 624 | |||
| 625 |
2/2✓ Branch 0 taken 5364712 times.
✓ Branch 1 taken 190360 times.
|
5555072 | c_tc[0] = (bs0 == 2) ? chroma_tc(pps, sps, qp0, chroma, tc_offset) : 0; |
| 626 |
2/2✓ Branch 0 taken 5377786 times.
✓ Branch 1 taken 177286 times.
|
5555072 | c_tc[1] = (bs1 == 2) ? chroma_tc(pps, sps, qp1, chroma, tc_offset) : 0; |
| 627 | 5555072 | src = &data[chroma][(y >> sps->vshift[chroma]) * linesize[chroma] + ((x >> sps->hshift[chroma]) << sps->pixel_shift)]; | |
| 628 |
2/2✓ Branch 0 taken 53552 times.
✓ Branch 1 taken 5501520 times.
|
5555072 | if (pcmf) { |
| 629 | 53552 | no_p[0] = get_pcm(sps, l->is_pcm, x - 1, y); | |
| 630 | 53552 | no_p[1] = get_pcm(sps, l->is_pcm, x - 1, y + (4 * v)); | |
| 631 | 53552 | no_q[0] = get_pcm(sps, l->is_pcm, x, y); | |
| 632 | 53552 | no_q[1] = get_pcm(sps, l->is_pcm, x, y + (4 * v)); | |
| 633 | 53552 | s->hevcdsp.hevc_v_loop_filter_chroma_c(src, linesize[chroma], | |
| 634 | c_tc, no_p, no_q); | ||
| 635 | } else | ||
| 636 | 5501520 | s->hevcdsp.hevc_v_loop_filter_chroma(src, linesize[chroma], | |
| 637 | c_tc, no_p, no_q); | ||
| 638 | } | ||
| 639 | } | ||
| 640 | |||
| 641 |
2/2✓ Branch 0 taken 276272 times.
✓ Branch 1 taken 12716364 times.
|
12992636 | if(!y) |
| 642 | 276272 | continue; | |
| 643 | |||
| 644 | // horizontal filtering chroma | ||
| 645 |
2/2✓ Branch 0 taken 12116526 times.
✓ Branch 1 taken 599838 times.
|
12716364 | tc_offset = x0 ? left_tc_offset : cur_tc_offset; |
| 646 | 12716364 | x_end2 = x_end; | |
| 647 |
2/2✓ Branch 0 taken 12116534 times.
✓ Branch 1 taken 599830 times.
|
12716364 | if (x_end != sps->width) |
| 648 | 12116534 | x_end2 = x_end - 8 * h; | |
| 649 |
4/4✓ Branch 0 taken 12116526 times.
✓ Branch 1 taken 599838 times.
✓ Branch 2 taken 46440568 times.
✓ Branch 3 taken 12716364 times.
|
59156932 | for (x = x0 ? x0 - 8 * h : 0; x < x_end2; x += (8 * h)) { |
| 650 | 46440568 | const int bs0 = l->horizontal_bs[( x + y * l->bs_width) >> 2]; | |
| 651 | 46440568 | const int bs1 = l->horizontal_bs[((x + 4 * h) + y * l->bs_width) >> 2]; | |
| 652 |
4/4✓ Branch 0 taken 41319072 times.
✓ Branch 1 taken 5121496 times.
✓ Branch 2 taken 194436 times.
✓ Branch 3 taken 41124636 times.
|
46440568 | if ((bs0 == 2) || (bs1 == 2)) { |
| 653 | 5121496 | const int qp0 = bs0 == 2 ? (get_qPy(sps, l->qp_y_tab, x, y - 1) + | |
| 654 |
2/2✓ Branch 0 taken 5121496 times.
✓ Branch 1 taken 194436 times.
|
10437428 | get_qPy(sps, l->qp_y_tab, x, y) + 1) >> 1 : 0; |
| 655 | 5130198 | const int qp1 = bs1 == 2 ? (get_qPy(sps, l->qp_y_tab, x + (4 * h), y - 1) + | |
| 656 |
2/2✓ Branch 0 taken 5130198 times.
✓ Branch 1 taken 185734 times.
|
10446130 | get_qPy(sps, l->qp_y_tab, x + (4 * h), y) + 1) >> 1 : 0; |
| 657 | |||
| 658 |
2/2✓ Branch 0 taken 5121496 times.
✓ Branch 1 taken 194436 times.
|
5315932 | c_tc[0] = bs0 == 2 ? chroma_tc(pps, sps, qp0, chroma, tc_offset) : 0; |
| 659 |
2/2✓ Branch 0 taken 5130198 times.
✓ Branch 1 taken 185734 times.
|
5315932 | c_tc[1] = bs1 == 2 ? chroma_tc(pps, sps, qp1, chroma, cur_tc_offset) : 0; |
| 660 | 5315932 | src = &data[chroma][(y >> sps->vshift[1]) * linesize[chroma] + ((x >> sps->hshift[1]) << sps->pixel_shift)]; | |
| 661 |
2/2✓ Branch 0 taken 52524 times.
✓ Branch 1 taken 5263408 times.
|
5315932 | if (pcmf) { |
| 662 | 52524 | no_p[0] = get_pcm(sps, l->is_pcm, x, y - 1); | |
| 663 | 52524 | no_p[1] = get_pcm(sps, l->is_pcm, x + (4 * h), y - 1); | |
| 664 | 52524 | no_q[0] = get_pcm(sps, l->is_pcm, x, y); | |
| 665 | 52524 | no_q[1] = get_pcm(sps, l->is_pcm, x + (4 * h), y); | |
| 666 | 52524 | s->hevcdsp.hevc_h_loop_filter_chroma_c(src, linesize[chroma], | |
| 667 | c_tc, no_p, no_q); | ||
| 668 | } else | ||
| 669 | 5263408 | s->hevcdsp.hevc_h_loop_filter_chroma(src, linesize[chroma], | |
| 670 | c_tc, no_p, no_q); | ||
| 671 | } | ||
| 672 | } | ||
| 673 | } | ||
| 674 | } | ||
| 675 | } | ||
| 676 | 1939282 | } | |
| 677 | |||
| 678 | 271610494 | static int boundary_strength(const HEVCContext *s, const MvField *curr, const MvField *neigh, | |
| 679 | const RefPicList *neigh_refPicList) | ||
| 680 | { | ||
| 681 |
4/4✓ Branch 0 taken 161523794 times.
✓ Branch 1 taken 110086700 times.
✓ Branch 2 taken 156916950 times.
✓ Branch 3 taken 4606844 times.
|
271610494 | if (curr->pred_flag == PF_BI && neigh->pred_flag == PF_BI) { |
| 682 | // same L0 and L1 | ||
| 683 |
2/2✓ Branch 0 taken 155122465 times.
✓ Branch 1 taken 1794485 times.
|
156916950 | if (s->cur_frame->refPicList[0].list[curr->ref_idx[0]] == neigh_refPicList[0].list[neigh->ref_idx[0]] && |
| 684 |
2/2✓ Branch 0 taken 19763541 times.
✓ Branch 1 taken 135358924 times.
|
155122465 | s->cur_frame->refPicList[0].list[curr->ref_idx[0]] == s->cur_frame->refPicList[1].list[curr->ref_idx[1]] && |
| 685 |
2/2✓ Branch 0 taken 19615565 times.
✓ Branch 1 taken 147976 times.
|
19763541 | neigh_refPicList[0].list[neigh->ref_idx[0]] == neigh_refPicList[1].list[neigh->ref_idx[1]]) { |
| 686 |
4/4✓ Branch 0 taken 19303511 times.
✓ Branch 1 taken 312054 times.
✓ Branch 2 taken 19225592 times.
✓ Branch 3 taken 77919 times.
|
19615565 | if ((FFABS(neigh->mv[0].x - curr->mv[0].x) >= 4 || FFABS(neigh->mv[0].y - curr->mv[0].y) >= 4 || |
| 687 |
4/4✓ Branch 0 taken 19162846 times.
✓ Branch 1 taken 62746 times.
✓ Branch 2 taken 14791 times.
✓ Branch 3 taken 19148055 times.
|
19225592 | FFABS(neigh->mv[1].x - curr->mv[1].x) >= 4 || FFABS(neigh->mv[1].y - curr->mv[1].y) >= 4) && |
| 688 |
4/4✓ Branch 0 taken 191635 times.
✓ Branch 1 taken 275875 times.
✓ Branch 2 taken 126031 times.
✓ Branch 3 taken 65604 times.
|
467510 | (FFABS(neigh->mv[1].x - curr->mv[0].x) >= 4 || FFABS(neigh->mv[1].y - curr->mv[0].y) >= 4 || |
| 689 |
4/4✓ Branch 0 taken 47296 times.
✓ Branch 1 taken 78735 times.
✓ Branch 2 taken 23641 times.
✓ Branch 3 taken 23655 times.
|
126031 | FFABS(neigh->mv[0].x - curr->mv[1].x) >= 4 || FFABS(neigh->mv[0].y - curr->mv[1].y) >= 4)) |
| 690 | 443855 | return 1; | |
| 691 | else | ||
| 692 | 19171710 | return 0; | |
| 693 |
2/2✓ Branch 0 taken 135506900 times.
✓ Branch 1 taken 1794485 times.
|
137301385 | } else if (neigh_refPicList[0].list[neigh->ref_idx[0]] == s->cur_frame->refPicList[0].list[curr->ref_idx[0]] && |
| 694 |
2/2✓ Branch 0 taken 134895210 times.
✓ Branch 1 taken 611690 times.
|
135506900 | neigh_refPicList[1].list[neigh->ref_idx[1]] == s->cur_frame->refPicList[1].list[curr->ref_idx[1]]) { |
| 695 |
4/4✓ Branch 0 taken 131058202 times.
✓ Branch 1 taken 3837008 times.
✓ Branch 2 taken 130145600 times.
✓ Branch 3 taken 912602 times.
|
134895210 | if (FFABS(neigh->mv[0].x - curr->mv[0].x) >= 4 || FFABS(neigh->mv[0].y - curr->mv[0].y) >= 4 || |
| 696 |
4/4✓ Branch 0 taken 129639097 times.
✓ Branch 1 taken 506503 times.
✓ Branch 2 taken 162606 times.
✓ Branch 3 taken 129476491 times.
|
130145600 | FFABS(neigh->mv[1].x - curr->mv[1].x) >= 4 || FFABS(neigh->mv[1].y - curr->mv[1].y) >= 4) |
| 697 | 5418719 | return 1; | |
| 698 | else | ||
| 699 | 129476491 | return 0; | |
| 700 |
2/2✓ Branch 0 taken 741301 times.
✓ Branch 1 taken 1664874 times.
|
2406175 | } else if (neigh_refPicList[1].list[neigh->ref_idx[1]] == s->cur_frame->refPicList[0].list[curr->ref_idx[0]] && |
| 701 |
2/2✓ Branch 0 taken 161113 times.
✓ Branch 1 taken 580188 times.
|
741301 | neigh_refPicList[0].list[neigh->ref_idx[0]] == s->cur_frame->refPicList[1].list[curr->ref_idx[1]]) { |
| 702 |
4/4✓ Branch 0 taken 105771 times.
✓ Branch 1 taken 55342 times.
✓ Branch 2 taken 92108 times.
✓ Branch 3 taken 13663 times.
|
161113 | if (FFABS(neigh->mv[1].x - curr->mv[0].x) >= 4 || FFABS(neigh->mv[1].y - curr->mv[0].y) >= 4 || |
| 703 |
4/4✓ Branch 0 taken 83453 times.
✓ Branch 1 taken 8655 times.
✓ Branch 2 taken 3128 times.
✓ Branch 3 taken 80325 times.
|
92108 | FFABS(neigh->mv[0].x - curr->mv[1].x) >= 4 || FFABS(neigh->mv[0].y - curr->mv[1].y) >= 4) |
| 704 | 80788 | return 1; | |
| 705 | else | ||
| 706 | 80325 | return 0; | |
| 707 | } else { | ||
| 708 | 2245062 | return 1; | |
| 709 | } | ||
| 710 |
4/4✓ Branch 0 taken 110086700 times.
✓ Branch 1 taken 4606844 times.
✓ Branch 2 taken 105488444 times.
✓ Branch 3 taken 4598256 times.
|
114693544 | } else if ((curr->pred_flag != PF_BI) && (neigh->pred_flag != PF_BI)){ // 1 MV |
| 711 | Mv A, B; | ||
| 712 | int ref_A, ref_B; | ||
| 713 | |||
| 714 |
2/2✓ Branch 0 taken 92370652 times.
✓ Branch 1 taken 13117792 times.
|
105488444 | if (curr->pred_flag & 1) { |
| 715 | 92370652 | A = curr->mv[0]; | |
| 716 | 92370652 | ref_A = s->cur_frame->refPicList[0].list[curr->ref_idx[0]]; | |
| 717 | } else { | ||
| 718 | 13117792 | A = curr->mv[1]; | |
| 719 | 13117792 | ref_A = s->cur_frame->refPicList[1].list[curr->ref_idx[1]]; | |
| 720 | } | ||
| 721 | |||
| 722 |
2/2✓ Branch 0 taken 92386924 times.
✓ Branch 1 taken 13101520 times.
|
105488444 | if (neigh->pred_flag & 1) { |
| 723 | 92386924 | B = neigh->mv[0]; | |
| 724 | 92386924 | ref_B = neigh_refPicList[0].list[neigh->ref_idx[0]]; | |
| 725 | } else { | ||
| 726 | 13101520 | B = neigh->mv[1]; | |
| 727 | 13101520 | ref_B = neigh_refPicList[1].list[neigh->ref_idx[1]]; | |
| 728 | } | ||
| 729 | |||
| 730 |
2/2✓ Branch 0 taken 101551289 times.
✓ Branch 1 taken 3937155 times.
|
105488444 | if (ref_A == ref_B) { |
| 731 |
4/4✓ Branch 0 taken 98360572 times.
✓ Branch 1 taken 3190717 times.
✓ Branch 2 taken 1145441 times.
✓ Branch 3 taken 97215131 times.
|
101551289 | if (FFABS(A.x - B.x) >= 4 || FFABS(A.y - B.y) >= 4) |
| 732 | 4336158 | return 1; | |
| 733 | else | ||
| 734 | 97215131 | return 0; | |
| 735 | } else | ||
| 736 | 3937155 | return 1; | |
| 737 | } | ||
| 738 | |||
| 739 | 9205100 | return 1; | |
| 740 | } | ||
| 741 | |||
| 742 | 20776465 | void ff_hevc_deblocking_boundary_strengths(HEVCLocalContext *lc, const HEVCLayerContext *l, | |
| 743 | const HEVCPPS *pps, | ||
| 744 | int x0, int y0, int log2_trafo_size) | ||
| 745 | { | ||
| 746 | 20776465 | const HEVCSPS *const sps = pps->sps; | |
| 747 | 20776465 | const HEVCContext *s = lc->parent; | |
| 748 | 20776465 | const MvField *tab_mvf = s->cur_frame->tab_mvf; | |
| 749 | 20776465 | int log2_min_pu_size = sps->log2_min_pu_size; | |
| 750 | 20776465 | int log2_min_tu_size = sps->log2_min_tb_size; | |
| 751 | 20776465 | int min_pu_width = sps->min_pu_width; | |
| 752 | 20776465 | int min_tu_width = sps->min_tb_width; | |
| 753 | 20776465 | int is_intra = tab_mvf[(y0 >> log2_min_pu_size) * min_pu_width + | |
| 754 | 20776465 | (x0 >> log2_min_pu_size)].pred_flag == PF_INTRA; | |
| 755 | int boundary_upper, boundary_left; | ||
| 756 | int i, j, bs; | ||
| 757 | |||
| 758 |
4/4✓ Branch 0 taken 20459842 times.
✓ Branch 1 taken 316623 times.
✓ Branch 2 taken 16628288 times.
✓ Branch 3 taken 3831554 times.
|
20776465 | boundary_upper = y0 > 0 && !(y0 & 7); |
| 759 |
2/2✓ Branch 0 taken 16628288 times.
✓ Branch 1 taken 4148177 times.
|
20776465 | if (boundary_upper && |
| 760 |
2/2✓ Branch 0 taken 2115920 times.
✓ Branch 1 taken 14512368 times.
|
16628288 | ((!s->sh.slice_loop_filter_across_slices_enabled_flag && |
| 761 |
2/2✓ Branch 0 taken 481682 times.
✓ Branch 1 taken 1634238 times.
|
2115920 | lc->boundary_flags & BOUNDARY_UPPER_SLICE && |
| 762 |
2/2✓ Branch 0 taken 423697 times.
✓ Branch 1 taken 57985 times.
|
481682 | (y0 % (1 << sps->log2_ctb_size)) == 0) || |
| 763 |
2/2✓ Branch 0 taken 418263 times.
✓ Branch 1 taken 16152040 times.
|
16570303 | (!pps->loop_filter_across_tiles_enabled_flag && |
| 764 |
2/2✓ Branch 0 taken 113215 times.
✓ Branch 1 taken 305048 times.
|
418263 | lc->boundary_flags & BOUNDARY_UPPER_TILE && |
| 765 |
2/2✓ Branch 0 taken 19525 times.
✓ Branch 1 taken 93690 times.
|
113215 | (y0 % (1 << sps->log2_ctb_size)) == 0))) |
| 766 | 77510 | boundary_upper = 0; | |
| 767 | |||
| 768 |
2/2✓ Branch 0 taken 16550778 times.
✓ Branch 1 taken 4225687 times.
|
20776465 | if (boundary_upper) { |
| 769 | 33101556 | const RefPicList *rpl_top = (lc->boundary_flags & BOUNDARY_UPPER_SLICE) ? | |
| 770 |
2/2✓ Branch 0 taken 2024378 times.
✓ Branch 1 taken 14526400 times.
|
16550778 | ff_hevc_get_ref_list(s->cur_frame, x0, y0 - 1) : |
| 771 | 14526400 | s->cur_frame->refPicList; | |
| 772 | 16550778 | int yp_pu = (y0 - 1) >> log2_min_pu_size; | |
| 773 | 16550778 | int yq_pu = y0 >> log2_min_pu_size; | |
| 774 | 16550778 | int yp_tu = (y0 - 1) >> log2_min_tu_size; | |
| 775 | 16550778 | int yq_tu = y0 >> log2_min_tu_size; | |
| 776 | |||
| 777 |
2/2✓ Branch 0 taken 54957400 times.
✓ Branch 1 taken 16550778 times.
|
71508178 | for (i = 0; i < (1 << log2_trafo_size); i += 4) { |
| 778 | 54957400 | int x_pu = (x0 + i) >> log2_min_pu_size; | |
| 779 | 54957400 | int x_tu = (x0 + i) >> log2_min_tu_size; | |
| 780 | 54957400 | const MvField *top = &tab_mvf[yp_pu * min_pu_width + x_pu]; | |
| 781 | 54957400 | const MvField *curr = &tab_mvf[yq_pu * min_pu_width + x_pu]; | |
| 782 | 54957400 | uint8_t top_cbf_luma = l->cbf_luma[yp_tu * min_tu_width + x_tu]; | |
| 783 | 54957400 | uint8_t curr_cbf_luma = l->cbf_luma[yq_tu * min_tu_width + x_tu]; | |
| 784 | |||
| 785 |
4/4✓ Branch 0 taken 42943464 times.
✓ Branch 1 taken 12013936 times.
✓ Branch 2 taken 1592680 times.
✓ Branch 3 taken 41350784 times.
|
54957400 | if (curr->pred_flag == PF_INTRA || top->pred_flag == PF_INTRA) |
| 786 | 13606616 | bs = 2; | |
| 787 |
4/4✓ Branch 0 taken 31591318 times.
✓ Branch 1 taken 9759466 times.
✓ Branch 2 taken 3791417 times.
✓ Branch 3 taken 27799901 times.
|
41350784 | else if (curr_cbf_luma || top_cbf_luma) |
| 788 | 13550883 | bs = 1; | |
| 789 | else | ||
| 790 | 27799901 | bs = boundary_strength(s, curr, top, rpl_top); | |
| 791 | 54957400 | l->horizontal_bs[((x0 + i) + y0 * l->bs_width) >> 2] = bs; | |
| 792 | } | ||
| 793 | } | ||
| 794 | |||
| 795 | // bs for vertical TU boundaries | ||
| 796 |
4/4✓ Branch 0 taken 20556550 times.
✓ Branch 1 taken 219915 times.
✓ Branch 2 taken 16724996 times.
✓ Branch 3 taken 3831554 times.
|
20776465 | boundary_left = x0 > 0 && !(x0 & 7); |
| 797 |
2/2✓ Branch 0 taken 16724996 times.
✓ Branch 1 taken 4051469 times.
|
20776465 | if (boundary_left && |
| 798 |
2/2✓ Branch 0 taken 2137727 times.
✓ Branch 1 taken 14587269 times.
|
16724996 | ((!s->sh.slice_loop_filter_across_slices_enabled_flag && |
| 799 |
2/2✓ Branch 0 taken 62563 times.
✓ Branch 1 taken 2075164 times.
|
2137727 | lc->boundary_flags & BOUNDARY_LEFT_SLICE && |
| 800 |
2/2✓ Branch 0 taken 54742 times.
✓ Branch 1 taken 7821 times.
|
62563 | (x0 % (1 << sps->log2_ctb_size)) == 0) || |
| 801 |
2/2✓ Branch 0 taken 429913 times.
✓ Branch 1 taken 16287262 times.
|
16717175 | (!pps->loop_filter_across_tiles_enabled_flag && |
| 802 |
2/2✓ Branch 0 taken 59216 times.
✓ Branch 1 taken 370697 times.
|
429913 | lc->boundary_flags & BOUNDARY_LEFT_TILE && |
| 803 |
2/2✓ Branch 0 taken 13380 times.
✓ Branch 1 taken 45836 times.
|
59216 | (x0 % (1 << sps->log2_ctb_size)) == 0))) |
| 804 | 21201 | boundary_left = 0; | |
| 805 | |||
| 806 |
2/2✓ Branch 0 taken 16703795 times.
✓ Branch 1 taken 4072670 times.
|
20776465 | if (boundary_left) { |
| 807 | 33407590 | const RefPicList *rpl_left = (lc->boundary_flags & BOUNDARY_LEFT_SLICE) ? | |
| 808 |
2/2✓ Branch 0 taken 282025 times.
✓ Branch 1 taken 16421770 times.
|
16703795 | ff_hevc_get_ref_list(s->cur_frame, x0 - 1, y0) : |
| 809 | 16421770 | s->cur_frame->refPicList; | |
| 810 | 16703795 | int xp_pu = (x0 - 1) >> log2_min_pu_size; | |
| 811 | 16703795 | int xq_pu = x0 >> log2_min_pu_size; | |
| 812 | 16703795 | int xp_tu = (x0 - 1) >> log2_min_tu_size; | |
| 813 | 16703795 | int xq_tu = x0 >> log2_min_tu_size; | |
| 814 | |||
| 815 |
2/2✓ Branch 0 taken 55974508 times.
✓ Branch 1 taken 16703795 times.
|
72678303 | for (i = 0; i < (1 << log2_trafo_size); i += 4) { |
| 816 | 55974508 | int y_pu = (y0 + i) >> log2_min_pu_size; | |
| 817 | 55974508 | int y_tu = (y0 + i) >> log2_min_tu_size; | |
| 818 | 55974508 | const MvField *left = &tab_mvf[y_pu * min_pu_width + xp_pu]; | |
| 819 | 55974508 | const MvField *curr = &tab_mvf[y_pu * min_pu_width + xq_pu]; | |
| 820 | 55974508 | uint8_t left_cbf_luma = l->cbf_luma[y_tu * min_tu_width + xp_tu]; | |
| 821 | 55974508 | uint8_t curr_cbf_luma = l->cbf_luma[y_tu * min_tu_width + xq_tu]; | |
| 822 | |||
| 823 |
4/4✓ Branch 0 taken 43894716 times.
✓ Branch 1 taken 12079792 times.
✓ Branch 2 taken 1741324 times.
✓ Branch 3 taken 42153392 times.
|
55974508 | if (curr->pred_flag == PF_INTRA || left->pred_flag == PF_INTRA) |
| 824 | 13821116 | bs = 2; | |
| 825 |
4/4✓ Branch 0 taken 32344764 times.
✓ Branch 1 taken 9808628 times.
✓ Branch 2 taken 3842051 times.
✓ Branch 3 taken 28502713 times.
|
42153392 | else if (curr_cbf_luma || left_cbf_luma) |
| 826 | 13650679 | bs = 1; | |
| 827 | else | ||
| 828 | 28502713 | bs = boundary_strength(s, curr, left, rpl_left); | |
| 829 | 55974508 | l->vertical_bs[(x0 + (y0 + i) * l->bs_width) >> 2] = bs; | |
| 830 | } | ||
| 831 | } | ||
| 832 | |||
| 833 |
4/4✓ Branch 0 taken 11849798 times.
✓ Branch 1 taken 8926667 times.
✓ Branch 2 taken 9139919 times.
✓ Branch 3 taken 2709879 times.
|
20776465 | if (log2_trafo_size > log2_min_pu_size && !is_intra) { |
| 834 | 9139919 | const RefPicList *rpl = s->cur_frame->refPicList; | |
| 835 | |||
| 836 | // bs for TU internal horizontal PU boundaries | ||
| 837 |
2/2✓ Branch 0 taken 11759987 times.
✓ Branch 1 taken 9139919 times.
|
20899906 | for (j = 8; j < (1 << log2_trafo_size); j += 8) { |
| 838 | 11759987 | int yp_pu = (y0 + j - 1) >> log2_min_pu_size; | |
| 839 | 11759987 | int yq_pu = (y0 + j) >> log2_min_pu_size; | |
| 840 | |||
| 841 |
2/2✓ Branch 0 taken 107653940 times.
✓ Branch 1 taken 11759987 times.
|
119413927 | for (i = 0; i < (1 << log2_trafo_size); i += 4) { |
| 842 | 107653940 | int x_pu = (x0 + i) >> log2_min_pu_size; | |
| 843 | 107653940 | const MvField *top = &tab_mvf[yp_pu * min_pu_width + x_pu]; | |
| 844 | 107653940 | const MvField *curr = &tab_mvf[yq_pu * min_pu_width + x_pu]; | |
| 845 | |||
| 846 | 107653940 | bs = boundary_strength(s, curr, top, rpl); | |
| 847 | 107653940 | l->horizontal_bs[((x0 + i) + (y0 + j) * l->bs_width) >> 2] = bs; | |
| 848 | } | ||
| 849 | } | ||
| 850 | |||
| 851 | // bs for TU internal vertical PU boundaries | ||
| 852 |
2/2✓ Branch 0 taken 41799812 times.
✓ Branch 1 taken 9139919 times.
|
50939731 | for (j = 0; j < (1 << log2_trafo_size); j += 4) { |
| 853 | 41799812 | int y_pu = (y0 + j) >> log2_min_pu_size; | |
| 854 | |||
| 855 |
2/2✓ Branch 0 taken 107653940 times.
✓ Branch 1 taken 41799812 times.
|
149453752 | for (i = 8; i < (1 << log2_trafo_size); i += 8) { |
| 856 | 107653940 | int xp_pu = (x0 + i - 1) >> log2_min_pu_size; | |
| 857 | 107653940 | int xq_pu = (x0 + i) >> log2_min_pu_size; | |
| 858 | 107653940 | const MvField *left = &tab_mvf[y_pu * min_pu_width + xp_pu]; | |
| 859 | 107653940 | const MvField *curr = &tab_mvf[y_pu * min_pu_width + xq_pu]; | |
| 860 | |||
| 861 | 107653940 | bs = boundary_strength(s, curr, left, rpl); | |
| 862 | 107653940 | l->vertical_bs[((x0 + i) + (y0 + j) * l->bs_width) >> 2] = bs; | |
| 863 | } | ||
| 864 | } | ||
| 865 | } | ||
| 866 | 20776465 | } | |
| 867 | |||
| 868 | #undef LUMA | ||
| 869 | #undef CB | ||
| 870 | #undef CR | ||
| 871 | |||
| 872 | 1941322 | void ff_hevc_hls_filter(HEVCLocalContext *lc, const HEVCLayerContext *l, | |
| 873 | const HEVCPPS *pps, | ||
| 874 | int x, int y, int ctb_size) | ||
| 875 | { | ||
| 876 | 1941322 | const HEVCSPS *const sps = pps->sps; | |
| 877 | 1941322 | const HEVCContext *const s = lc->parent; | |
| 878 | 1941322 | int x_end = x >= sps->width - ctb_size; | |
| 879 | 1941322 | int skip = 0; | |
| 880 |
1/2✓ Branch 0 taken 1941322 times.
✗ Branch 1 not taken.
|
1941322 | if (s->avctx->skip_loop_filter >= AVDISCARD_ALL || |
| 881 |
5/6✓ Branch 0 taken 2550 times.
✓ Branch 1 taken 1938772 times.
✓ Branch 2 taken 2040 times.
✓ Branch 3 taken 510 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 2040 times.
|
1941322 | (s->avctx->skip_loop_filter >= AVDISCARD_NONKEY && !IS_IDR(s)) || |
| 882 |
2/2✓ Branch 0 taken 510 times.
✓ Branch 1 taken 1938772 times.
|
1939282 | (s->avctx->skip_loop_filter >= AVDISCARD_NONINTRA && |
| 883 |
1/2✓ Branch 0 taken 510 times.
✗ Branch 1 not taken.
|
510 | s->sh.slice_type != HEVC_SLICE_I) || |
| 884 |
2/2✓ Branch 0 taken 510 times.
✓ Branch 1 taken 1938772 times.
|
1939282 | (s->avctx->skip_loop_filter >= AVDISCARD_BIDIR && |
| 885 |
1/2✓ Branch 0 taken 510 times.
✗ Branch 1 not taken.
|
510 | s->sh.slice_type == HEVC_SLICE_B) || |
| 886 |
3/4✓ Branch 0 taken 510 times.
✓ Branch 1 taken 1938772 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 510 times.
|
1939792 | (s->avctx->skip_loop_filter >= AVDISCARD_NONREF && |
| 887 | 510 | ff_hevc_nal_is_nonref(s->nal_unit_type))) | |
| 888 | 2040 | skip = 1; | |
| 889 | |||
| 890 |
2/2✓ Branch 0 taken 1939282 times.
✓ Branch 1 taken 2040 times.
|
1941322 | if (!skip) |
| 891 | 1939282 | deblocking_filter_CTB(s, l, pps, sps, x, y); | |
| 892 |
4/4✓ Branch 0 taken 1726626 times.
✓ Branch 1 taken 214696 times.
✓ Branch 2 taken 1724586 times.
✓ Branch 3 taken 2040 times.
|
3665908 | if (sps->sao_enabled && !skip) { |
| 893 | 1724586 | int y_end = y >= sps->height - ctb_size; | |
| 894 |
4/4✓ Branch 0 taken 1601478 times.
✓ Branch 1 taken 123108 times.
✓ Branch 2 taken 1533100 times.
✓ Branch 3 taken 68378 times.
|
1724586 | if (y && x) |
| 895 | 1533100 | sao_filter_CTB(lc, l, s, pps, sps, x - ctb_size, y - ctb_size); | |
| 896 |
4/4✓ Branch 0 taken 1646636 times.
✓ Branch 1 taken 77950 times.
✓ Branch 2 taken 113507 times.
✓ Branch 3 taken 1533129 times.
|
1724586 | if (x && y_end) |
| 897 | 113507 | sao_filter_CTB(lc, l, s, pps, sps, x - ctb_size, y); | |
| 898 |
4/4✓ Branch 0 taken 1601478 times.
✓ Branch 1 taken 123108 times.
✓ Branch 2 taken 68377 times.
✓ Branch 3 taken 1533101 times.
|
1724586 | if (y && x_end) { |
| 899 | 68377 | sao_filter_CTB(lc, l, s, pps, sps, x, y - ctb_size); | |
| 900 |
2/2✓ Branch 0 taken 513 times.
✓ Branch 1 taken 67864 times.
|
68377 | if (s->avctx->active_thread_type & FF_THREAD_FRAME ) |
| 901 | 513 | ff_progress_frame_report(&s->cur_frame->tf, y); | |
| 902 | } | ||
| 903 |
4/4✓ Branch 0 taken 77949 times.
✓ Branch 1 taken 1646637 times.
✓ Branch 2 taken 9571 times.
✓ Branch 3 taken 68378 times.
|
1724586 | if (x_end && y_end) { |
| 904 | 9571 | sao_filter_CTB(lc, l, s, pps, sps, x , y); | |
| 905 |
2/2✓ Branch 0 taken 32 times.
✓ Branch 1 taken 9539 times.
|
9571 | if (s->avctx->active_thread_type & FF_THREAD_FRAME ) |
| 906 | 32 | ff_progress_frame_report(&s->cur_frame->tf, y + ctb_size); | |
| 907 | } | ||
| 908 |
1/4✗ Branch 0 not taken.
✓ Branch 1 taken 216736 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
|
216736 | } else if (s->avctx->active_thread_type & FF_THREAD_FRAME && x_end) |
| 909 | ✗ | ff_progress_frame_report(&s->cur_frame->tf, y + ctb_size - 4); | |
| 910 | 1941322 | } | |
| 911 | |||
| 912 | 1941353 | void ff_hevc_hls_filters(HEVCLocalContext *lc, const HEVCLayerContext *l, | |
| 913 | const HEVCPPS *pps, | ||
| 914 | int x_ctb, int y_ctb, int ctb_size) | ||
| 915 | { | ||
| 916 | 1941353 | int x_end = x_ctb >= pps->sps->width - ctb_size; | |
| 917 | 1941353 | int y_end = y_ctb >= pps->sps->height - ctb_size; | |
| 918 |
4/4✓ Branch 0 taken 1803091 times.
✓ Branch 1 taken 138262 times.
✓ Branch 2 taken 1726638 times.
✓ Branch 3 taken 76453 times.
|
1941353 | if (y_ctb && x_ctb) |
| 919 | 1726638 | ff_hevc_hls_filter(lc, l, pps, x_ctb - ctb_size, y_ctb - ctb_size, ctb_size); | |
| 920 |
4/4✓ Branch 0 taken 1803091 times.
✓ Branch 1 taken 138262 times.
✓ Branch 2 taken 76452 times.
✓ Branch 3 taken 1726639 times.
|
1941353 | if (y_ctb && x_end) |
| 921 | 76452 | ff_hevc_hls_filter(lc, l, pps, x_ctb, y_ctb - ctb_size, ctb_size); | |
| 922 |
4/4✓ Branch 0 taken 1854550 times.
✓ Branch 1 taken 86803 times.
✓ Branch 2 taken 127883 times.
✓ Branch 3 taken 1726667 times.
|
1941353 | if (x_ctb && y_end) |
| 923 | 127883 | ff_hevc_hls_filter(lc, l, pps, x_ctb - ctb_size, y_ctb, ctb_size); | |
| 924 | 1941353 | } | |
| 925 |