28 #ifndef AVCODEC_H264_MVPRED_H
29 #define AVCODEC_H264_MVPRED_H
39 int i,
int list,
int part_width)
41 const int topright_ref = h->
ref_cache[list][i - 8 + part_width];
46 #define SET_DIAG_MV(MV_OP, REF_OP, XY, Y4) \
47 const int xy = XY, y4 = Y4; \
48 const int mb_type = mb_types[xy + (y4 >> 2) * h->mb_stride]; \
49 if (!USES_LIST(mb_type, list)) \
50 return LIST_NOT_USED; \
51 mv = h->cur_pic_ptr->motion_val[list][h->mb2b_xy[xy] + 3 + y4 * h->b_stride]; \
52 h->mv_cache[list][scan8[0] - 2][0] = mv[0]; \
53 h->mv_cache[list][scan8[0] - 2][1] = mv[1] MV_OP; \
54 return h->cur_pic_ptr->ref_index[list][4 * xy + 1 + (y4 & ~1)] REF_OP;
57 && i >=
scan8[0] + 8 && (i & 7) == 4
66 (h->
mb_y & 1) * 2 + (i >> 5));
77 *C = h->
mv_cache[list][i - 8 + part_width];
95 int part_width,
int list,
int ref,
96 int *
const mx,
int *
const my)
98 const int index8 =
scan8[
n];
99 const int top_ref = h->
ref_cache[list][index8 - 8];
100 const int left_ref = h->
ref_cache[list][index8 - 1];
101 const int16_t *
const A = h->
mv_cache[list][index8 - 1];
102 const int16_t *
const B = h->
mv_cache[list][index8 - 8];
104 int diagonal_ref, match_count;
106 av_assert2(part_width == 1 || part_width == 2 || part_width == 4);
117 match_count = (diagonal_ref == ref) + (top_ref == ref) + (left_ref == ref);
118 tprintf(h->
avctx,
"pred_motion match_count=%d\n", match_count);
119 if (match_count > 1) {
122 }
else if (match_count == 1) {
123 if (left_ref == ref) {
126 }
else if (top_ref == ref) {
146 "pred_motion (%2d %2d %2d) (%2d %2d %2d) (%2d %2d %2d) -> (%2d %2d %2d) at %2d %2d %d list %d\n",
147 top_ref, B[0], B[1], diagonal_ref, C[0], C[1], left_ref,
148 A[0], A[1], ref, *mx, *my, h->
mb_x, h->
mb_y, n, list);
158 int n,
int list,
int ref,
159 int *
const mx,
int *
const my)
165 tprintf(h->
avctx,
"pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d\n",
166 top_ref, B[0], B[1], h->
mb_x, h->
mb_y, n, list);
168 if (top_ref == ref) {
177 tprintf(h->
avctx,
"pred_16x8: (%2d %2d %2d) at %2d %2d %d list %d\n",
178 left_ref, A[0], A[1], h->
mb_x, h->
mb_y, n, list);
180 if (left_ref == ref) {
198 int n,
int list,
int ref,
199 int *
const mx,
int *
const my)
205 tprintf(h->
avctx,
"pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n",
206 left_ref, A[0], A[1], h->
mb_x, h->
mb_y, n, list);
208 if (left_ref == ref) {
219 tprintf(h->
avctx,
"pred_8x16: (%2d %2d %2d) at %2d %2d %d list %d\n",
220 diagonal_ref, C[0], C[1], h->
mb_x, h->
mb_y, n, list);
222 if (diagonal_ref == ref) {
233 #define FIX_MV_MBAFF(type, refn, mvn, idx) \
234 if (FRAME_MBAFF(h)) { \
236 if (!IS_INTERLACED(type)) { \
238 AV_COPY32(mvbuf[idx], mvn); \
239 mvbuf[idx][1] /= 2; \
243 if (IS_INTERLACED(type)) { \
245 AV_COPY32(mvbuf[idx], mvn); \
246 mvbuf[idx][1] <<= 1; \
258 int top_ref, left_ref, diagonal_ref, match_count, mx, my;
259 const int16_t *
A, *
B, *
C;
296 top_ref, left_ref, h->
mb_x, h->
mb_y);
321 match_count = !diagonal_ref + !top_ref + !left_ref;
322 tprintf(h->
avctx,
"pred_pskip_motion match_count=%d\n", match_count);
323 if (match_count > 1) {
326 }
else if (match_count == 1) {
330 }
else if (!top_ref) {
352 const int mb_xy = h->
mb_xy;
353 int topleft_xy, top_xy, topright_xy, left_xy[
LEFT_MBS];
354 static const uint8_t left_block_options[4][32] = {
355 { 0, 1, 2, 3, 7, 10, 8, 11, 3 + 0 * 4, 3 + 1 * 4, 3 + 2 * 4, 3 + 3 * 4, 1 + 4 * 4, 1 + 8 * 4, 1 + 5 * 4, 1 + 9 * 4 },
356 { 2, 2, 3, 3, 8, 11, 8, 11, 3 + 2 * 4, 3 + 2 * 4, 3 + 3 * 4, 3 + 3 * 4, 1 + 5 * 4, 1 + 9 * 4, 1 + 5 * 4, 1 + 9 * 4 },
357 { 0, 0, 1, 1, 7, 10, 7, 10, 3 + 0 * 4, 3 + 0 * 4, 3 + 1 * 4, 3 + 1 * 4, 1 + 4 * 4, 1 + 8 * 4, 1 + 4 * 4, 1 + 8 * 4 },
358 { 0, 2, 0, 2, 7, 10, 7, 10, 3 + 0 * 4, 3 + 2 * 4, 3 + 0 * 4, 3 + 2 * 4, 1 + 4 * 4, 1 + 8 * 4, 1 + 4 * 4, 1 + 8 * 4 }
368 topleft_xy = top_xy - 1;
369 topright_xy = top_xy + 1;
370 left_xy[
LBOT] = left_xy[
LTOP] = mb_xy - 1;
376 if (left_mb_field_flag != curr_mb_field_flag) {
378 if (curr_mb_field_flag) {
390 if (curr_mb_field_flag) {
395 if (left_mb_field_flag != curr_mb_field_flag) {
396 if (curr_mb_field_flag) {
441 int topleft_xy, top_xy, topright_xy, left_xy[
LEFT_MBS];
442 int topleft_type, top_type, topright_type, left_type[
LEFT_MBS];
467 if (!(top_type & type_mask)) {
474 if (!(left_type[LTOP] & type_mask)) {
478 if (!(left_type[
LBOT] & type_mask)) {
486 if (!((left_typei & type_mask) && (left_type[LTOP] & type_mask))) {
492 if (!(left_type[LTOP] & type_mask)) {
498 if (!(topleft_type & type_mask))
501 if (!(topright_type & type_mask))
513 for (i = 0; i < 2; i++) {
539 AV_COPY32(&nnz_cache[4 + 8 * 0], &nnz[4 * 3]);
541 AV_COPY32(&nnz_cache[4 + 8 * 5], &nnz[4 * 7]);
542 AV_COPY32(&nnz_cache[4 + 8 * 10], &nnz[4 * 11]);
544 AV_COPY32(&nnz_cache[4 + 8 * 5], &nnz[4 * 5]);
545 AV_COPY32(&nnz_cache[4 + 8 * 10], &nnz[4 * 9]);
548 uint32_t top_empty =
CABAC(h) && !
IS_INTRA(mb_type) ? 0 : 0x40404040;
549 AV_WN32A(&nnz_cache[4 + 8 * 0], top_empty);
550 AV_WN32A(&nnz_cache[4 + 8 * 5], top_empty);
551 AV_WN32A(&nnz_cache[4 + 8 * 10], top_empty);
554 for (i = 0; i < 2; i++) {
555 if (left_type[
LEFT(i)]) {
557 nnz_cache[3 + 8 * 1 + 2 * 8 * i] = nnz[left_block[8 + 0 + 2 * i]];
558 nnz_cache[3 + 8 * 2 + 2 * 8 * i] = nnz[left_block[8 + 1 + 2 * i]];
560 nnz_cache[3 + 8 * 6 + 2 * 8 * i] = nnz[left_block[8 + 0 + 2 * i] + 4 * 4];
561 nnz_cache[3 + 8 * 7 + 2 * 8 * i] = nnz[left_block[8 + 1 + 2 * i] + 4 * 4];
562 nnz_cache[3 + 8 * 11 + 2 * 8 * i] = nnz[left_block[8 + 0 + 2 * i] + 8 * 4];
563 nnz_cache[3 + 8 * 12 + 2 * 8 * i] = nnz[left_block[8 + 1 + 2 * i] + 8 * 4];
565 nnz_cache[3 + 8 * 6 + 2 * 8 * i] = nnz[left_block[8 + 0 + 2 * i] - 2 + 4 * 4];
566 nnz_cache[3 + 8 * 7 + 2 * 8 * i] = nnz[left_block[8 + 1 + 2 * i] - 2 + 4 * 4];
567 nnz_cache[3 + 8 * 11 + 2 * 8 * i] = nnz[left_block[8 + 0 + 2 * i] - 2 + 8 * 4];
568 nnz_cache[3 + 8 * 12 + 2 * 8 * i] = nnz[left_block[8 + 1 + 2 * i] - 2 + 8 * 4];
570 nnz_cache[3 + 8 * 6 + 8 * i] = nnz[left_block[8 + 4 + 2 * i]];
571 nnz_cache[3 + 8 * 11 + 8 * i] = nnz[left_block[8 + 5 + 2 * i]];
574 nnz_cache[3 + 8 * 1 + 2 * 8 * i] =
575 nnz_cache[3 + 8 * 2 + 2 * 8 * i] =
576 nnz_cache[3 + 8 * 6 + 2 * 8 * i] =
577 nnz_cache[3 + 8 * 7 + 2 * 8 * i] =
578 nnz_cache[3 + 8 * 11 + 2 * 8 * i] =
579 nnz_cache[3 + 8 * 12 + 2 * 8 * i] =
CABAC(h) && !
IS_INTRA(mb_type) ? 0 : 64;
590 if (left_type[
LTOP]) {
592 ((h->
cbp_table[left_xy[LTOP]] >> (left_block[0] & (~1))) & 2) |
593 (((h->
cbp_table[left_xy[
LBOT]] >> (left_block[2] & (~1))) & 2) << 2);
603 for (list = 0; list < h->
list_count; list++) {
613 const int b_xy = h->
mb2b_xy[top_xy] + 3 * b_stride;
615 ref_cache[0 - 1 * 8] =
616 ref_cache[1 - 1 * 8] = ref[4 * top_xy + 2];
617 ref_cache[2 - 1 * 8] =
618 ref_cache[3 - 1 * 8] = ref[4 * top_xy + 3];
626 for (i = 0; i < 2; i++) {
627 int cache_idx = -1 + i * 2 * 8;
630 const int b8_xy = 4 * left_xy[
LEFT(i)] + 1;
632 mv[b_xy + b_stride * left_block[0 + i * 2]]);
634 mv[b_xy + b_stride * left_block[1 + i * 2]]);
635 ref_cache[cache_idx] = ref[b8_xy + (left_block[0 + i * 2] & ~1)];
636 ref_cache[cache_idx + 8] = ref[b8_xy + (left_block[1 + i * 2] & ~1)];
640 ref_cache[cache_idx] =
648 const int b8_xy = 4 * left_xy[
LTOP] + 1;
649 AV_COPY32(mv_cache[-1],
mv[b_xy + b_stride * left_block[0]]);
650 ref_cache[-1] = ref[b8_xy + (left_block[0] & ~1)];
659 const int b_xy = h->
mb2b_xy[topright_xy] + 3 * b_stride;
661 ref_cache[4 - 1 * 8] = ref[4 * topright_xy + 2];
667 if(ref_cache[2 - 1*8] < 0 || ref_cache[4 - 1 * 8] < 0) {
669 const int b_xy = h->
mb2b_xy[topleft_xy] + 3 + b_stride +
673 ref_cache[-1 - 1 * 8] = ref[b8_xy];
687 ref_cache[2 + 8 * 0] =
694 const int b_xy = h->
mb2br_xy[top_xy];
695 AV_COPY64(mvd_cache[0 - 1 * 8], mvd[b_xy + 0]);
701 AV_COPY16(mvd_cache[-1 + 0 * 8], mvd[b_xy - left_block[0]]);
702 AV_COPY16(mvd_cache[-1 + 1 * 8], mvd[b_xy - left_block[1]]);
709 AV_COPY16(mvd_cache[-1 + 2 * 8], mvd[b_xy - left_block[2]]);
710 AV_COPY16(mvd_cache[-1 + 3 * 8], mvd[b_xy - left_block[3]]);
725 }
else if (
IS_8X8(top_type)) {
726 int b8_xy = 4 * top_xy;
727 direct_cache[0 - 1 * 8] = direct_table[b8_xy + 2];
728 direct_cache[2 - 1 * 8] = direct_table[b8_xy + 3];
736 else if (
IS_8X8(left_type[LTOP]))
737 direct_cache[-1 + 0 * 8] = direct_table[4 * left_xy[
LTOP] + 1 + (left_block[0] & ~1)];
743 else if (
IS_8X8(left_type[LBOT]))
744 direct_cache[-1 + 2 * 8] = direct_table[4 * left_xy[LBOT] + 1 + (left_block[2] & ~1)];
752 MAP_F2F(scan8[0] - 1 - 1 * 8, topleft_type) \
753 MAP_F2F(scan8[0] + 0 - 1 * 8, top_type) \
754 MAP_F2F(scan8[0] + 1 - 1 * 8, top_type) \
755 MAP_F2F(scan8[0] + 2 - 1 * 8, top_type) \
756 MAP_F2F(scan8[0] + 3 - 1 * 8, top_type) \
757 MAP_F2F(scan8[0] + 4 - 1 * 8, topright_type) \
758 MAP_F2F(scan8[0] - 1 + 0 * 8, left_type[LTOP]) \
759 MAP_F2F(scan8[0] - 1 + 1 * 8, left_type[LTOP]) \
760 MAP_F2F(scan8[0] - 1 + 2 * 8, left_type[LBOT]) \
761 MAP_F2F(scan8[0] - 1 + 3 * 8, left_type[LBOT])
766 #define MAP_F2F(idx, mb_type) \
767 if (!IS_INTERLACED(mb_type) && h->ref_cache[list][idx] >= 0) { \
768 h->ref_cache[list][idx] <<= 1; \
769 h->mv_cache[list][idx][1] /= 2; \
770 h->mvd_cache[list][idx][1] >>= 1; \
777 #define MAP_F2F(idx, mb_type) \
778 if (IS_INTERLACED(mb_type) && h->ref_cache[list][idx] >= 0) { \
779 h->ref_cache[list][idx] >>= 1; \
780 h->mv_cache[list][idx][1] <<= 1; \
781 h->mvd_cache[list][idx][1] <<= 1; \
799 const int mb_xy = h->
mb_xy;