36 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
37 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4,
38 5, 5, 6, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 20, 22, 24
42 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8,
43 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36,
44 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64
49 static const int qp_c[] = {
50 29, 30, 31, 32, 33, 33, 34, 34, 35, 35, 36, 36, 37, 37
52 int qp, qp_i, offset, idxt;
60 qp_i = av_clip(qp_y + offset, 0, 57);
73 int xBase,
int yBase,
int log2_cb_size)
79 int xQgBase = xBase - (xBase & MinCuQpDeltaSizeMask);
80 int yQgBase = yBase - (yBase & MinCuQpDeltaSizeMask);
85 int availableA = (xBase & ctb_size_mask) &&
86 (xQgBase & ctb_size_mask);
87 int availableB = (yBase & ctb_size_mask) &&
88 (yQgBase & ctb_size_mask);
89 int qPy_pred, qPy_a, qPy_b;
97 if (log2_cb_size < s->ps.sps->log2_ctb_size -
99 static const int offsetX[8][8] = {
100 { -1, 1, 3, 1, 7, 1, 3, 1 },
101 { 0, 0, 0, 0, 0, 0, 0, 0 },
102 { 1, 3, 1, 3, 1, 3, 1, 3 },
103 { 2, 2, 2, 2, 2, 2, 2, 2 },
104 { 3, 5, 7, 5, 3, 5, 7, 5 },
105 { 4, 4, 4, 4, 4, 4, 4, 4 },
106 { 5, 7, 5, 7, 5, 7, 5, 7 },
107 { 6, 6, 6, 6, 6, 6, 6, 6 }
109 static const int offsetY[8][8] = {
110 { 7, 0, 1, 2, 3, 4, 5, 6 },
111 { 0, 1, 2, 3, 4, 5, 6, 7 },
112 { 1, 0, 3, 2, 5, 4, 7, 6 },
113 { 0, 1, 2, 3, 4, 5, 6, 7 },
114 { 3, 0, 1, 2, 7, 4, 5, 6 },
115 { 0, 1, 2, 3, 4, 5, 6, 7 },
116 { 1, 0, 3, 2, 5, 4, 7, 6 },
117 { 0, 1, 2, 3, 4, 5, 6, 7 }
126 x =
FFMIN(xC0b + offsetX[idxX][idxY], min_cb_width - 1);
127 y =
FFMIN(yC0b + (offsetY[idxX][idxY] & idx_mask), min_cb_height - 1);
130 offsetX[idxX][idxY] == -1) {
134 qPy_pred = s->
qp_y_tab[y * min_cb_width + x];
142 qPy_a = s->
qp_y_tab[(x_cb - 1) + y_cb * min_cb_width];
148 qPy_b = s->
qp_y_tab[x_cb + (y_cb - 1) * min_cb_width];
150 return (qPy_a + qPy_b + 1) >> 1;
154 int xBase,
int yBase,
int log2_cb_size)
156 int qp_y =
get_qPy_pred(s, xC, yC, xBase, yBase, log2_cb_size);
169 int x = xC >> log2_min_cb_size;
170 int y = yC >> log2_min_cb_size;
179 for (i = 0; i <
height; i++) {
180 memcpy(dst, src, width);
186 #define CTB(tab, x, y) ((tab)[(y) * s->ps.sps->ctb_width + (x)]) 193 int class = 1, class_index;
197 int x_shift = 0, y_shift = 0;
204 uint8_t vert_edge[] = { 0, 0, 0, 0 };
205 uint8_t horiz_edge[] = { 0, 0, 0, 0 };
206 uint8_t diag_edge[] = { 0, 0, 0, 0 };
210 uint8_t left_tile_edge = 0, up_tile_edge = 0;
212 sao[0] = &
CTB(s->
sao, x_ctb, y_ctb);
213 edges[0] = x_ctb == 0;
214 edges[1] = y_ctb == 0;
222 sao[
class] = &
CTB(s->
sao, x_ctb - 1, y_ctb);
224 vert_edge[2] = vert_edge[0];
233 sao[
class] = &
CTB(s->
sao, x_ctb, y_ctb - 1);
235 horiz_edge[1] = horiz_edge[0];
243 sao[
class] = &
CTB(s->
sao, x_ctb - 1, y_ctb - 1);
249 vert_edge[3] = vert_edge[1];
251 horiz_edge[3] = horiz_edge[2];
253 diag_edge[3] = diag_edge[0];
258 diag_edge[2] = !lfase[2] || left_tile_edge || up_tile_edge;
259 diag_edge[1] = diag_edge[2];
262 diag_edge[1] = !lfase[1] || left_tile_edge || up_tile_edge;
263 diag_edge[2] = diag_edge[1];
266 diag_edge[2] = left_tile_edge || up_tile_edge;
267 diag_edge[1] = diag_edge[2];
272 for (c_idx = 0; c_idx < 3; c_idx++) {
273 int chroma = c_idx ? 1 : 0;
274 int x0 = x >> chroma;
275 int y0 = y >> chroma;
285 int offset = (y_shift >> chroma) * stride + ((x_shift >> chroma) << s->
ps.
sps->
pixel_shift);
287 copy_CTB(dst - offset, src - offset,
289 (edges[3] ? height + (y_shift >> chroma) : height), stride);
291 for (class_index = 0; class_index <
class; class_index++) {
293 switch (sao[class_index]->type_idx[c_idx]) {
307 vert_edge[classes[class_index]],
308 horiz_edge[classes[class_index]],
309 diag_edge[classes[class_index]]);
324 x_pu = x >> log2_min_pu_size;
325 y_pu = y >> log2_min_pu_size;
332 #define TC_CALC(qp, bs) \ 333 tctable[av_clip((qp) + DEFAULT_INTRA_TC_OFFSET * ((bs) - 1) + \ 334 (tc_offset >> 1 << 1), \ 335 0, MAX_QP + DEFAULT_INTRA_TC_OFFSET)] 340 int x, y, x_end, y_end, chroma;
341 int c_tc[2], tc[2], beta;
346 int ctb_size = 1 << log2_ctb_size;
347 int ctb = (x0 >> log2_ctb_size) +
351 int tc_offset, left_tc_offset, beta_offset, left_beta_offset;
361 x_end = x0 + ctb_size;
364 y_end = y0 + ctb_size;
368 tc_offset = cur_tc_offset;
369 beta_offset = cur_beta_offset;
372 for (y = y0; y < y_end; y += 8) {
373 for (x = x0 ? x0 : 8; x < x_end; x += 8) {
377 const int qp = (
get_qPy(s, x - 1, y) +
get_qPy(s, x, y) + 1) >> 1;
381 tc[0] = bs0 ?
TC_CALC(qp, bs0) : 0;
382 tc[1] = bs1 ?
TC_CALC(qp, bs1) : 0;
385 no_p[0] =
get_pcm(s, x - 1, y);
386 no_p[1] =
get_pcm(s, x - 1, y + 4);
388 no_q[1] =
get_pcm(s, x, y + 4);
391 beta, tc, no_p, no_q);
395 beta, tc, no_p, no_q);
401 for (chroma = 1; chroma <= 2; chroma++) {
402 for (y = y0; y < y_end; y += 16) {
403 for (x = x0 ? x0 : 16; x < x_end; x += 16) {
406 if ((bs0 == 2) || (bs1 == 2)) {
407 const int qp0 = (
get_qPy(s, x - 1, y) +
get_qPy(s, x, y) + 1) >> 1;
408 const int qp1 = (
get_qPy(s, x - 1, y + 8) +
get_qPy(s, x, y + 8) + 1) >> 1;
410 c_tc[0] = (bs0 == 2) ?
chroma_tc(s, qp0, chroma, tc_offset) : 0;
411 c_tc[1] = (bs1 == 2) ?
chroma_tc(s, qp1, chroma, tc_offset) : 0;
414 no_p[0] =
get_pcm(s, x - 1, y);
415 no_p[1] =
get_pcm(s, x - 1, y + 8);
417 no_q[1] =
get_pcm(s, x, y + 8);
433 for (y = y0 ? y0 : 8; y < y_end; y += 8) {
434 for (x = x0 ? x0 - 8 : 0; x < x_end; x += 8) {
438 const int qp = (
get_qPy(s, x, y - 1) +
get_qPy(s, x, y) + 1) >> 1;
440 tc_offset = x >= x0 ? cur_tc_offset : left_tc_offset;
441 beta_offset = x >= x0 ? cur_beta_offset : left_beta_offset;
444 tc[0] = bs0 ?
TC_CALC(qp, bs0) : 0;
445 tc[1] = bs1 ?
TC_CALC(qp, bs1) : 0;
448 no_p[0] =
get_pcm(s, x, y - 1);
449 no_p[1] =
get_pcm(s, x + 4, y - 1);
451 no_q[1] =
get_pcm(s, x + 4, y);
454 beta, tc, no_p, no_q);
458 beta, tc, no_p, no_q);
464 for (chroma = 1; chroma <= 2; chroma++) {
465 for (y = y0 ? y0 : 16; y < y_end; y += 16) {
466 for (x = x0 - 8; x < x_end; x += 16) {
473 }
else if (x >= x_end - 8) {
481 if ((bs0 == 2) || (bs1 == 2)) {
482 const int qp0 = bs0 == 2 ? (
get_qPy(s, x, y - 1) +
get_qPy(s, x, y) + 1) >> 1 : 0;
483 const int qp1 = bs1 == 2 ? (
get_qPy(s, x + 8, y - 1) +
get_qPy(s, x + 8, y) + 1) >> 1 : 0;
485 tc_offset = x >= x0 ? cur_tc_offset : left_tc_offset;
486 c_tc[0] = bs0 == 2 ?
chroma_tc(s, qp0, chroma, tc_offset) : 0;
487 c_tc[1] = bs1 == 2 ?
chroma_tc(s, qp1, chroma, cur_tc_offset) : 0;
490 no_p[0] =
get_pcm(s, x, y - 1);
491 no_p[1] =
get_pcm(s, x + 8, y - 1);
493 no_q[1] =
get_pcm(s, x + 8, y);
518 if (curr_cbf_luma || neigh_cbf_luma)
528 if ((abs(neigh->
mv[0].
x - curr->
mv[0].
x) >= 4 || abs(neigh->
mv[0].
y - curr->
mv[0].
y) >= 4 ||
529 abs(neigh->
mv[1].
x - curr->
mv[1].
x) >= 4 || abs(neigh->
mv[1].
y - curr->
mv[1].
y) >= 4) &&
530 (abs(neigh->
mv[1].
x - curr->
mv[0].
x) >= 4 || abs(neigh->
mv[1].
y - curr->
mv[0].
y) >= 4 ||
531 abs(neigh->
mv[0].
x - curr->
mv[1].
x) >= 4 || abs(neigh->
mv[0].
y - curr->
mv[1].
y) >= 4))
537 if (abs(neigh->
mv[0].
x - curr->
mv[0].
x) >= 4 || abs(neigh->
mv[0].
y - curr->
mv[0].
y) >= 4 ||
538 abs(neigh->
mv[1].
x - curr->
mv[1].
x) >= 4 || abs(neigh->
mv[1].
y - curr->
mv[1].
y) >= 4)
544 if (abs(neigh->
mv[1].
x - curr->
mv[0].
x) >= 4 || abs(neigh->
mv[1].
y - curr->
mv[0].
y) >= 4 ||
545 abs(neigh->
mv[0].
x - curr->
mv[1].
x) >= 4 || abs(neigh->
mv[0].
y - curr->
mv[1].
y) >= 4)
566 ref_B = neigh_refPicList[0].
list[neigh->
ref_idx[0]];
569 ref_B = neigh_refPicList[1].
list[neigh->
ref_idx[1]];
572 if (ref_A == ref_B) {
573 if (abs(A.
x - B.
x) >= 4 || abs(A.
y - B.
y) >= 4)
594 int is_intra = tab_mvf[(y0 >> log2_min_pu_size) * min_pu_width +
596 int boundary_upper, boundary_left;
599 boundary_upper = y0 > 0 && !(y0 & 7);
600 if (boundary_upper &&
609 if (boundary_upper) {
614 int yp_pu = (y0 - 1) >> log2_min_pu_size;
615 int yq_pu = y0 >> log2_min_pu_size;
616 int yp_tu = (y0 - 1) >> log2_min_tu_size;
617 int yq_tu = y0 >> log2_min_tu_size;
619 for (i = 0; i < (1 << log2_trafo_size); i += 4) {
620 int x_pu = (x0 + i) >> log2_min_pu_size;
621 int x_tu = (x0 + i) >> log2_min_tu_size;
622 MvField *top = &tab_mvf[yp_pu * min_pu_width + x_pu];
623 MvField *curr = &tab_mvf[yq_pu * min_pu_width + x_pu];
628 top, top_cbf_luma, rpl_top, 1);
638 for (j = 8; j < (1 << log2_trafo_size); j += 8) {
639 int yp_pu = (y0 + j - 1) >> log2_min_pu_size;
640 int yq_pu = (y0 + j) >> log2_min_pu_size;
641 int yp_tu = (y0 + j - 1) >> log2_min_tu_size;
642 int yq_tu = (y0 + j) >> log2_min_tu_size;
644 for (i = 0; i < (1 << log2_trafo_size); i += 4) {
645 int x_pu = (x0 + i) >> log2_min_pu_size;
646 int x_tu = (x0 + i) >> log2_min_tu_size;
647 MvField *top = &tab_mvf[yp_pu * min_pu_width + x_pu];
648 MvField *curr = &tab_mvf[yq_pu * min_pu_width + x_pu];
653 top, top_cbf_luma, rpl, 0);
661 boundary_left = x0 > 0 && !(x0 & 7);
676 int xp_pu = (x0 - 1) >> log2_min_pu_size;
677 int xq_pu = x0 >> log2_min_pu_size;
678 int xp_tu = (x0 - 1) >> log2_min_tu_size;
679 int xq_tu = x0 >> log2_min_tu_size;
681 for (i = 0; i < (1 << log2_trafo_size); i += 4) {
682 int y_pu = (y0 + i) >> log2_min_pu_size;
683 int y_tu = (y0 + i) >> log2_min_tu_size;
684 MvField *left = &tab_mvf[y_pu * min_pu_width + xp_pu];
685 MvField *curr = &tab_mvf[y_pu * min_pu_width + xq_pu];
691 left, left_cbf_luma, rpl_left, 1);
698 if (log2_trafo_size > log2_min_pu_size && !is_intra) {
701 for (j = 0; j < (1 << log2_trafo_size); j += 4) {
702 int y_pu = (y0 + j) >> log2_min_pu_size;
703 int y_tu = (y0 + j) >> log2_min_tu_size;
705 for (i = 8; i < (1 << log2_trafo_size); i += 8) {
706 int xp_pu = (x0 + i - 1) >> log2_min_pu_size;
707 int xq_pu = (x0 + i) >> log2_min_pu_size;
708 int xp_tu = (x0 + i - 1) >> log2_min_tu_size;
709 int xq_tu = (x0 + i) >> log2_min_tu_size;
710 MvField *left = &tab_mvf[y_pu * min_pu_width + xp_pu];
711 MvField *curr = &tab_mvf[y_pu * min_pu_width + xq_pu];
716 left, left_cbf_luma, rpl, 0);
739 if (y_ctb && x_ctb >= s->
ps.
sps->
width - ctb_size) {
743 if (x_ctb && y_ctb >= s->
ps.
sps->
height - ctb_size)
unsigned int log2_min_cb_size
void(* hevc_h_loop_filter_luma_c)(uint8_t *pix, ptrdiff_t stride, int beta, int *tc, uint8_t *no_p, uint8_t *no_q)
void(* hevc_h_loop_filter_chroma_c)(uint8_t *pix, ptrdiff_t stride, int *tc, uint8_t *no_p, uint8_t *no_q)
int16_t x
horizontal component of motion vector
void(* hevc_v_loop_filter_chroma)(uint8_t *pix, ptrdiff_t stride, int *tc, uint8_t *no_p, uint8_t *no_q)
static int get_qPy_pred(HEVCContext *s, int xC, int yC, int xBase, int yBase, int log2_cb_size)
static void copy_CTB(uint8_t *dst, uint8_t *src, int width, int height, int stride)
static void sao_filter_CTB(HEVCContext *s, int x, int y)
void ff_hevc_hls_filter(HEVCContext *s, int x, int y)
void ff_hevc_deblocking_boundary_strengths(HEVCContext *s, int x0, int y0, int log2_trafo_size)
void(* sao_band_filter[4])(uint8_t *dst, uint8_t *src, ptrdiff_t stride, struct SAOParams *sao, int *borders, int width, int height, int c_idx)
void(* hevc_h_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride, int beta, int *tc, uint8_t *no_p, uint8_t *no_q)
static const uint8_t tctable[54]
uint8_t loop_filter_disable_flag
static const uint8_t betatable[52]
uint8_t transquant_bypass_enable_flag
#define BOUNDARY_UPPER_SLICE
void(* sao_edge_filter[4])(uint8_t *dst, uint8_t *src, ptrdiff_t stride, struct SAOParams *sao, int *borders, int width, int height, int c_idx, uint8_t vert_edge, uint8_t horiz_edge, uint8_t diag_edge)
void ff_hevc_hls_filters(HEVCContext *s, int x_ctb, int y_ctb, int ctb_size)
unsigned int log2_ctb_size
void(* hevc_h_loop_filter_chroma)(uint8_t *pix, ptrdiff_t stride, int *tc, uint8_t *no_p, uint8_t *no_q)
uint8_t tiles_enabled_flag
common internal API header
void ff_thread_report_progress(ThreadFrame *f, int n, int field)
Notify later decoding threads when part of their reference picture is ready.
Context Adaptive Binary Arithmetic Coder inline functions.
if(ac->has_optimized_func)
int * ctb_addr_rs_to_ts
CtbAddrRSToTS.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
unsigned int log2_min_pu_size
int16_t y
vertical component of motion vector
uint8_t loop_filter_across_tiles_enabled_flag
void(* hevc_v_loop_filter_chroma_c)(uint8_t *pix, ptrdiff_t stride, int *tc, uint8_t *no_p, uint8_t *no_q)
unsigned int log2_min_tb_size
static int get_qPy(HEVCContext *s, int xC, int yC)
static int boundary_strength(HEVCContext *s, MvField *curr, uint8_t curr_cbf_luma, MvField *neigh, uint8_t neigh_cbf_luma, RefPicList *neigh_refPicList, int tu_border)
static int get_pcm(HEVCContext *s, int x, int y)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
#define DEFAULT_INTRA_TC_OFFSET
RefPicList * ff_hevc_get_ref_list(HEVCContext *s, HEVCFrame *frame, int x0, int y0)
void ff_hevc_set_qPy(HEVCContext *s, int xC, int yC, int xBase, int yBase, int log2_cb_size)
static int chroma_tc(HEVCContext *s, int qp_y, int c_idx, int tc_offset)
common internal and external API header
#define BOUNDARY_LEFT_SLICE
int32_t * tab_slice_address
void(* hevc_v_loop_filter_luma)(uint8_t *pix, ptrdiff_t stride, int beta, int *tc, uint8_t *no_p, uint8_t *no_q)
uint8_t * filter_slice_edges
int diff_cu_qp_delta_depth
#define BOUNDARY_LEFT_TILE
void(* hevc_v_loop_filter_luma_c)(uint8_t *pix, ptrdiff_t stride, int beta, int *tc, uint8_t *no_p, uint8_t *no_q)
static void deblocking_filter_CTB(HEVCContext *s, int x0, int y0)
#define BOUNDARY_UPPER_TILE