59 uint8_t *dest_cr,
int mb_x,
int mb_y)
61 int *linesize =
s->cur_pic.f->linesize;
62 int dc, dcu, dcv, y,
i;
63 for (
i = 0;
i < 4;
i++) {
64 dc =
s->dc_val[0][mb_x * 2 + (
i & 1) + (mb_y * 2 + (
i >> 1)) *
s->b8_stride];
69 for (y = 0; y < 8; y++) {
71 for (x = 0; x < 8; x++)
72 dest_y[x + (
i & 1) * 8 + (y + (
i >> 1) * 8) * linesize[0]] =
dc / 8;
75 dcu =
s->dc_val[1][mb_x + mb_y *
s->mb_stride];
76 dcv =
s->dc_val[2][mb_x + mb_y *
s->mb_stride];
87 for (y = 0; y < 8; y++) {
89 for (x = 0; x < 8; x++) {
90 dest_cb[x + y * linesize[1]] = dcu / 8;
91 dest_cr[x + y * linesize[2]] = dcv / 8;
101 for (y = 1; y <
height - 1; y++) {
104 for (x = 1; x <
width - 1; x++) {
109 dc = (
av_clip(
dc, INT_MIN/10923, INT_MAX/10923 - 32768) * 10923 + 32768) >> 16;
116 for (x = 1; x <
width - 1; x++) {
117 int prev_dc =
data[x];
119 for (y = 1; y <
height - 1; y++) {
125 dc = (
av_clip(
dc, INT_MIN/10923, INT_MAX/10923 - 32768) * 10923 + 32768) >> 16;
138 int h, ptrdiff_t
stride,
int is_luma)
149 for(b_y=0; b_y<
h; b_y++){
152 for(b_x=0; b_x<
w; b_x++){
153 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*
s->mb_stride;
154 int error_j=
s->error_status_table[mb_index_j];
155 int intra_j =
IS_INTRA(
s->cur_pic.mb_type[mb_index_j]);
165 for(b_x=
w-1; b_x>=0; b_x--){
166 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*
s->mb_stride;
167 int error_j=
s->error_status_table[mb_index_j];
168 int intra_j =
IS_INTRA(
s->cur_pic.mb_type[mb_index_j]);
177 for(b_x=0; b_x<
w; b_x++){
180 for(b_y=0; b_y<
h; b_y++){
181 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*
s->mb_stride;
182 int error_j=
s->error_status_table[mb_index_j];
183 int intra_j =
IS_INTRA(
s->cur_pic.mb_type[mb_index_j]);
193 for(b_y=
h-1; b_y>=0; b_y--){
194 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*
s->mb_stride;
195 int error_j=
s->error_status_table[mb_index_j];
196 int intra_j =
IS_INTRA(
s->cur_pic.mb_type[mb_index_j]);
206 for (b_y = 0; b_y <
h; b_y++) {
207 for (b_x = 0; b_x <
w; b_x++) {
208 int mb_index,
error, j;
210 mb_index = (b_x >> is_luma) + (b_y >> is_luma) *
s->mb_stride;
211 error =
s->error_status_table[mb_index];
213 if (
IS_INTER(
s->cur_pic.mb_type[mb_index]))
220 for (j = 0; j < 4; j++) {
225 guess = (guess + weight_sum / 2) / weight_sum;
241 int h, ptrdiff_t
stride,
int is_luma)
244 ptrdiff_t mvx_stride, mvy_stride;
247 mvx_stride >>= is_luma;
248 mvy_stride *= mvx_stride;
250 for (b_y = 0; b_y <
h; b_y++) {
251 for (b_x = 0; b_x <
w - 1; b_x++) {
253 int left_status =
s->error_status_table[( b_x >> is_luma) + (b_y >> is_luma) *
s->mb_stride];
254 int right_status =
s->error_status_table[((b_x + 1) >> is_luma) + (b_y >> is_luma) *
s->mb_stride];
255 int left_intra =
IS_INTRA(
s->cur_pic.mb_type[( b_x >> is_luma) + (b_y >> is_luma) *
s->mb_stride]);
256 int right_intra =
IS_INTRA(
s->cur_pic.mb_type[((b_x + 1) >> is_luma) + (b_y >> is_luma) *
s->mb_stride]);
260 int16_t *left_mv =
s->cur_pic.motion_val[0][mvy_stride * b_y + mvx_stride * b_x];
261 int16_t *right_mv =
s->cur_pic.motion_val[0][mvy_stride * b_y + mvx_stride * (b_x + 1)];
262 if (!(left_damage || right_damage))
264 if ((!left_intra) && (!right_intra) &&
265 FFABS(left_mv[0] - right_mv[0]) +
266 FFABS(left_mv[1] + right_mv[1]) < 2)
269 for (y = 0; y < 8; y++) {
284 if (!(left_damage && right_damage))
310 ptrdiff_t
stride,
int is_luma)
313 ptrdiff_t mvx_stride, mvy_stride;
316 mvx_stride >>= is_luma;
317 mvy_stride *= mvx_stride;
319 for (b_y = 0; b_y <
h - 1; b_y++) {
320 for (b_x = 0; b_x <
w; b_x++) {
322 int top_status =
s->error_status_table[(b_x >> is_luma) + (b_y >> is_luma) *
s->mb_stride];
323 int bottom_status =
s->error_status_table[(b_x >> is_luma) + ((b_y + 1) >> is_luma) *
s->mb_stride];
324 int top_intra =
IS_INTRA(
s->cur_pic.mb_type[(b_x >> is_luma) + ( b_y >> is_luma) *
s->mb_stride]);
325 int bottom_intra =
IS_INTRA(
s->cur_pic.mb_type[(b_x >> is_luma) + ((b_y + 1) >> is_luma) *
s->mb_stride]);
330 int16_t *top_mv =
s->cur_pic.motion_val[0][mvy_stride * b_y + mvx_stride * b_x];
331 int16_t *bottom_mv =
s->cur_pic.motion_val[0][mvy_stride * (b_y + 1) + mvx_stride * b_x];
333 if (!(top_damage || bottom_damage))
336 if ((!top_intra) && (!bottom_intra) &&
337 FFABS(top_mv[0] - bottom_mv[0]) +
338 FFABS(top_mv[1] + bottom_mv[1]) < 2)
341 for (x = 0; x < 8; x++) {
356 if (!(top_damage && bottom_damage))
378 #define MV_UNCHANGED 2
385 blocklist[ *blocklist_length ][0] = mb_x;
386 blocklist[(*blocklist_length)++][1] = mb_y;
391 int (*blocklist)[2], (*next_blocklist)[2];
393 const ptrdiff_t mb_stride =
s->mb_stride;
394 const int mb_width =
s->mb_width;
395 int mb_height =
s->mb_height;
398 ptrdiff_t mot_step, mot_stride;
399 int blocklist_length, next_blocklist_length;
401 if (
s->last_pic.f &&
s->last_pic.f->data[0])
402 mb_height =
FFMIN(mb_height, (
s->last_pic.f->height+15)>>4);
403 if (
s->next_pic.f &&
s->next_pic.f->data[0])
404 mb_height =
FFMIN(mb_height, (
s->next_pic.f->height+15)>>4);
406 blocklist = (int (*)[2])
s->er_temp_buffer;
407 next_blocklist = blocklist +
s->mb_stride *
s->mb_height;
408 fixed = (uint8_t *)(next_blocklist +
s->mb_stride *
s->mb_height);
413 if (
s->last_pic.motion_val[0]) {
419 for (
i = 0;
i < mb_width * mb_height;
i++) {
420 const int mb_xy =
s->mb_index2xy[
i];
422 int error =
s->error_status_table[mb_xy];
432 else if(
s->last_pic.f->data[0] &&
s->last_pic.motion_val[0]){
433 const int mb_y= mb_xy /
s->mb_stride;
434 const int mb_x= mb_xy %
s->mb_stride;
435 const int mot_index= (mb_x + mb_y*mot_stride) * mot_step;
436 s->cur_pic.motion_val[0][mot_index][0]=
s->last_pic.motion_val[0][mot_index][0];
437 s->cur_pic.motion_val[0][mot_index][1]=
s->last_pic.motion_val[0][mot_index][1];
438 s->cur_pic.ref_index[0][4*mb_xy] =
s->last_pic.ref_index[0][4*mb_xy];
443 num_avail <=
FFMAX(mb_width, mb_height) / 2) {
444 for (mb_y = 0; mb_y < mb_height; mb_y++) {
445 for (mb_x = 0; mb_x <
s->mb_width; mb_x++) {
446 const int mb_xy = mb_x + mb_y *
s->mb_stride;
463 blocklist_length = 0;
464 for (mb_y = 0; mb_y < mb_height; mb_y++) {
465 for (mb_x = 0; mb_x < mb_width; mb_x++) {
466 const int mb_xy = mb_x + mb_y * mb_stride;
468 if (mb_x)
add_blocklist(blocklist, &blocklist_length,
fixed, mb_x - 1, mb_y, mb_xy - 1);
469 if (mb_y)
add_blocklist(blocklist, &blocklist_length,
fixed, mb_x, mb_y - 1, mb_xy - mb_stride);
470 if (mb_x+1 < mb_width)
add_blocklist(blocklist, &blocklist_length,
fixed, mb_x + 1, mb_y, mb_xy + 1);
471 if (mb_y+1 < mb_height)
add_blocklist(blocklist, &blocklist_length,
fixed, mb_x, mb_y + 1, mb_xy + mb_stride);
477 int changed, pass, none_left;
482 for (pass = 0; (changed || pass < 2) && pass < 10; pass++) {
484 for (blocklist_index = 0; blocklist_index < blocklist_length; blocklist_index++) {
485 const int mb_x = blocklist[blocklist_index][0];
486 const int mb_y = blocklist[blocklist_index][1];
487 const int mb_xy = mb_x + mb_y * mb_stride;
488 int mv_predictor[8][2];
495 int prev_x, prev_y, prev_ref;
497 if ((mb_x ^ mb_y ^ pass) & 1)
507 j |=
fixed[mb_xy - 1];
508 if (mb_x + 1 < mb_width)
509 j |=
fixed[mb_xy + 1];
511 j |=
fixed[mb_xy - mb_stride];
512 if (mb_y + 1 < mb_height)
513 j |=
fixed[mb_xy + mb_stride];
522 mot_index = (mb_x + mb_y * mot_stride) * mot_step;
524 if (mb_x > 0 &&
fixed[mb_xy - 1] > 1) {
525 mv_predictor[pred_count][0] =
526 s->cur_pic.motion_val[0][mot_index - mot_step][0];
527 mv_predictor[pred_count][1] =
528 s->cur_pic.motion_val[0][mot_index - mot_step][1];
530 s->cur_pic.ref_index[0][4 * (mb_xy - 1)];
533 if (mb_x + 1 < mb_width &&
fixed[mb_xy + 1] > 1) {
534 mv_predictor[pred_count][0] =
535 s->cur_pic.motion_val[0][mot_index + mot_step][0];
536 mv_predictor[pred_count][1] =
537 s->cur_pic.motion_val[0][mot_index + mot_step][1];
539 s->cur_pic.ref_index[0][4 * (mb_xy + 1)];
542 if (mb_y > 0 &&
fixed[mb_xy - mb_stride] > 1) {
543 mv_predictor[pred_count][0] =
544 s->cur_pic.motion_val[0][mot_index - mot_stride * mot_step][0];
545 mv_predictor[pred_count][1] =
546 s->cur_pic.motion_val[0][mot_index - mot_stride * mot_step][1];
548 s->cur_pic.ref_index[0][4 * (mb_xy -
s->mb_stride)];
551 if (mb_y + 1<mb_height &&
fixed[mb_xy + mb_stride] > 1) {
552 mv_predictor[pred_count][0] =
553 s->cur_pic.motion_val[0][mot_index + mot_stride * mot_step][0];
554 mv_predictor[pred_count][1] =
555 s->cur_pic.motion_val[0][mot_index + mot_stride * mot_step][1];
557 s->cur_pic.ref_index[0][4 * (mb_xy +
s->mb_stride)];
563 if (pred_count > 1) {
564 int sum_x = 0, sum_y = 0, sum_r = 0;
565 int max_x, max_y, min_x, min_y, max_r, min_r;
567 for (j = 0; j < pred_count; j++) {
568 sum_x += mv_predictor[j][0];
569 sum_y += mv_predictor[j][1];
571 if (j &&
ref[j] !=
ref[j - 1])
572 goto skip_mean_and_median;
576 mv_predictor[pred_count][0] = sum_x / j;
577 mv_predictor[pred_count][1] = sum_y / j;
578 ref[pred_count] = sum_r / j;
581 if (pred_count >= 3) {
582 min_y = min_x = min_r = 99999;
583 max_y = max_x = max_r = -99999;
585 min_x = min_y = max_x = max_y = min_r = max_r = 0;
587 for (j = 0; j < pred_count; j++) {
588 max_x =
FFMAX(max_x, mv_predictor[j][0]);
589 max_y =
FFMAX(max_y, mv_predictor[j][1]);
591 min_x =
FFMIN(min_x, mv_predictor[j][0]);
592 min_y =
FFMIN(min_y, mv_predictor[j][1]);
595 mv_predictor[pred_count + 1][0] = sum_x - max_x - min_x;
596 mv_predictor[pred_count + 1][1] = sum_y - max_y - min_y;
597 ref[pred_count + 1] = sum_r - max_r - min_r;
599 if (pred_count == 4) {
600 mv_predictor[pred_count + 1][0] /= 2;
601 mv_predictor[pred_count + 1][1] /= 2;
602 ref[pred_count + 1] /= 2;
607 skip_mean_and_median:
609 mv_predictor[pred_count][0] =
610 mv_predictor[pred_count][1] =
614 prev_x =
s->cur_pic.motion_val[0][mot_index][0];
615 prev_y =
s->cur_pic.motion_val[0][mot_index][1];
616 prev_ref =
s->cur_pic.ref_index[0][4 * mb_xy];
619 mv_predictor[pred_count][0] = prev_x;
620 mv_predictor[pred_count][1] = prev_y;
621 ref[pred_count] = prev_ref;
625 best_score = 256 * 256 * 256 * 64;
626 for (j = 0; j < pred_count; j++) {
627 int *linesize =
s->cur_pic.f->linesize;
629 uint8_t *
src =
s->cur_pic.f->data[0] +
630 mb_x * 16 + mb_y * 16 * linesize[0];
632 s->cur_pic.motion_val[0][mot_index][0] =
633 s->mv[0][0][0] = mv_predictor[j][0];
634 s->cur_pic.motion_val[0][mot_index][1] =
635 s->mv[0][0][1] = mv_predictor[j][1];
644 if (mb_x > 0 &&
fixed[mb_xy - 1] > 1) {
646 for (k = 0; k < 16; k++)
647 score +=
FFABS(
src[k * linesize[0] - 1] -
648 src[k * linesize[0]]);
650 if (mb_x + 1 < mb_width &&
fixed[mb_xy + 1] > 1) {
652 for (k = 0; k < 16; k++)
653 score +=
FFABS(
src[k * linesize[0] + 15] -
654 src[k * linesize[0] + 16]);
656 if (mb_y > 0 &&
fixed[mb_xy - mb_stride] > 1) {
658 for (k = 0; k < 16; k++)
661 if (mb_y + 1 < mb_height &&
fixed[mb_xy + mb_stride] > 1) {
663 for (k = 0; k < 16; k++)
664 score +=
FFABS(
src[k + linesize[0] * 15] -
665 src[k + linesize[0] * 16]);
668 if (score <= best_score) {
673 s->mv[0][0][0] = mv_predictor[best_pred][0];
674 s->mv[0][0][1] = mv_predictor[best_pred][1];
676 for (
i = 0;
i < mot_step;
i++)
677 for (j = 0; j < mot_step; j++) {
678 s->cur_pic.motion_val[0][mot_index +
i + j * mot_stride][0] =
s->mv[0][0][0];
679 s->cur_pic.motion_val[0][mot_index +
i + j * mot_stride][1] =
s->mv[0][0][1];
686 if (
s->mv[0][0][0] != prev_x ||
s->mv[0][0][1] != prev_y) {
697 next_blocklist_length = 0;
699 for (blocklist_index = 0; blocklist_index < blocklist_length; blocklist_index++) {
700 const int mb_x = blocklist[blocklist_index][0];
701 const int mb_y = blocklist[blocklist_index][1];
702 const int mb_xy = mb_x + mb_y * mb_stride;
707 add_blocklist(next_blocklist, &next_blocklist_length,
fixed, mb_x - 1, mb_y, mb_xy - 1);
709 add_blocklist(next_blocklist, &next_blocklist_length,
fixed, mb_x, mb_y - 1, mb_xy - mb_stride);
710 if (mb_x + 1 < mb_width)
711 add_blocklist(next_blocklist, &next_blocklist_length,
fixed, mb_x + 1, mb_y, mb_xy + 1);
712 if (mb_y + 1 < mb_height)
713 add_blocklist(next_blocklist, &next_blocklist_length,
fixed, mb_x, mb_y + 1, mb_xy + mb_stride);
716 av_assert0(next_blocklist_length <= mb_height * mb_width);
717 FFSWAP(
int , blocklist_length, next_blocklist_length);
718 FFSWAP(
void*, blocklist, next_blocklist);
724 int is_intra_likely,
i, j, undamaged_count, skip_amount, mb_x, mb_y;
726 if (!
s->last_pic.f || !
s->last_pic.f->data[0])
733 for (
i = 0;
i <
s->mb_num;
i++) {
734 const int mb_xy =
s->mb_index2xy[
i];
735 const int error =
s->error_status_table[mb_xy];
740 if (undamaged_count < 5)
743 skip_amount =
FFMAX(undamaged_count / 50, 1);
747 for (mb_y = 0; mb_y <
s->mb_height - 1; mb_y++) {
748 for (mb_x = 0; mb_x <
s->mb_width; mb_x++) {
750 const int mb_xy = mb_x + mb_y *
s->mb_stride;
752 error =
s->error_status_table[mb_xy];
758 if ((j % skip_amount) != 0)
762 int *linesize =
s->cur_pic.f->linesize;
763 uint8_t *mb_ptr =
s->cur_pic.f->data[0] +
764 mb_x * 16 + mb_y * 16 * linesize[0];
765 uint8_t *last_mb_ptr =
s->last_pic.f->data[0] +
766 mb_x * 16 + mb_y * 16 * linesize[0];
773 is_intra_likely +=
s->sad(
NULL, last_mb_ptr, mb_ptr,
776 is_intra_likely -=
s->sad(
NULL, last_mb_ptr,
777 last_mb_ptr + linesize[0] * 16,
788 return is_intra_likely > 0;
793 if (!
s->avctx->error_concealment)
796 if (!
s->mecc_inited) {
799 s->sad = mecc.
sad[0];
804 s->mb_stride *
s->mb_height *
sizeof(uint8_t));
806 s->error_occurred = 0;
811 if (
s->avctx->hwaccel ||
813 s->cur_pic.field_picture
827 int endx,
int endy,
int status)
829 const int start_i =
av_clip(startx + starty *
s->mb_width, 0,
s->mb_num - 1);
830 const int end_i =
av_clip(endx + endy *
s->mb_width, 0,
s->mb_num);
831 const int start_xy =
s->mb_index2xy[start_i];
832 const int end_xy =
s->mb_index2xy[end_i];
835 if (
s->avctx->hwaccel)
838 if (start_i > end_i || start_xy > end_xy) {
840 "internal error, slice end before start\n");
844 if (!
s->avctx->error_concealment)
862 s->error_occurred = 1;
867 memset(&
s->error_status_table[start_xy], 0,
868 (end_xy - start_xy) *
sizeof(uint8_t));
871 for (
i = start_xy;
i < end_xy;
i++)
872 s->error_status_table[
i] &=
mask;
875 if (end_i ==
s->mb_num)
878 s->error_status_table[end_xy] &=
mask;
879 s->error_status_table[end_xy] |=
status;
882 s->error_status_table[start_xy] |=
VP_START;
886 int prev_status =
s->error_status_table[
s->mb_index2xy[start_i - 1]];
890 s->error_occurred = 1;
898 int *linesize =
NULL;
899 int i, mb_x, mb_y,
error, error_type, dc_error, mv_error, ac_error;
901 int threshold_part[4] = { 100, 100, 100 };
904 int size =
s->b8_stride * 2 *
s->mb_height;
909 if (!
s->avctx->error_concealment || !
atomic_load(&
s->error_count) ||
913 (
s->avctx->skip_top +
s->avctx->skip_bottom)) {
916 linesize =
s->cur_pic.f->linesize;
919 && (
FFALIGN(
s->avctx->height, 16)&16)
920 &&
atomic_load(&
s->error_count) == 3 *
s->mb_width * (
s->avctx->skip_top +
s->avctx->skip_bottom + 1)) {
921 for (mb_x = 0; mb_x <
s->mb_width; mb_x++) {
922 int status =
s->error_status_table[mb_x + (
s->mb_height - 1) *
s->mb_stride];
927 if (mb_x ==
s->mb_width) {
934 if (
s->last_pic.f->width !=
s->cur_pic.f->width ||
935 s->last_pic.f->height !=
s->cur_pic.f->height ||
936 s->last_pic.f->format !=
s->cur_pic.f->format) {
938 memset(&
s->last_pic, 0,
sizeof(
s->last_pic));
942 if (
s->next_pic.f->width !=
s->cur_pic.f->width ||
943 s->next_pic.f->height !=
s->cur_pic.f->height ||
944 s->next_pic.f->format !=
s->cur_pic.f->format) {
946 memset(&
s->next_pic, 0,
sizeof(
s->next_pic));
950 if (!
s->cur_pic.motion_val[0] || !
s->cur_pic.ref_index[0]) {
953 for (
i = 0;
i < 2;
i++) {
954 s->ref_index[
i] =
av_calloc(
s->mb_stride *
s->mb_height, 4 *
sizeof(uint8_t));
956 if (!
s->ref_index[
i] || !
s->motion_val_base[
i])
958 s->cur_pic.ref_index[
i] =
s->ref_index[
i];
959 s->cur_pic.motion_val[
i] =
s->motion_val_base[
i] + 4;
964 for (mb_y = 0; mb_y <
s->mb_height; mb_y++) {
965 for (mb_x = 0; mb_x <
s->mb_width; mb_x++) {
966 int status =
s->error_status_table[mb_x + mb_y *
s->mb_stride];
976 for (error_type = 1; error_type <= 3; error_type++) {
979 for (
i =
s->mb_num - 1;
i >= 0;
i--) {
980 const int mb_xy =
s->mb_index2xy[
i];
981 int error =
s->error_status_table[mb_xy];
983 if (
error & (1 << error_type))
985 if (
error & (8 << error_type))
989 s->error_status_table[mb_xy] |= 1 << error_type;
998 if (
s->partitioned_frame) {
1001 for (
i =
s->mb_num - 1;
i >= 0;
i--) {
1002 const int mb_xy =
s->mb_index2xy[
i];
1003 int error =
s->error_status_table[mb_xy];
1025 for (
i =
s->mb_num - 2;
i >=
s->mb_width + 100;
i--) {
1026 const int mb_xy =
s->mb_index2xy[
i];
1027 int error1 =
s->error_status_table[mb_xy];
1028 int error2 =
s->error_status_table[
s->mb_index2xy[
i + 1]];
1049 for (error_type = 1; error_type <= 3; error_type++) {
1050 for (
i =
s->mb_num - 1;
i >= 0;
i--) {
1051 const int mb_xy =
s->mb_index2xy[
i];
1052 int error =
s->error_status_table[mb_xy];
1054 if (!
s->mbskip_table || !
s->mbskip_table[mb_xy])
1056 if (
error & (1 << error_type))
1059 if (
s->partitioned_frame) {
1060 if (
distance < threshold_part[error_type - 1])
1061 s->error_status_table[mb_xy] |= 1 << error_type;
1064 s->error_status_table[mb_xy] |= 1 << error_type;
1075 for (
i = 0;
i <
s->mb_num;
i++) {
1076 const int mb_xy =
s->mb_index2xy[
i];
1077 int old_error =
s->error_status_table[mb_xy];
1083 s->error_status_table[mb_xy] |=
error;
1088 if (!
s->partitioned_frame) {
1089 for (
i = 0;
i <
s->mb_num;
i++) {
1090 const int mb_xy =
s->mb_index2xy[
i];
1091 int error =
s->error_status_table[mb_xy];
1094 s->error_status_table[mb_xy] =
error;
1099 dc_error = ac_error = mv_error = 0;
1100 for (
i = 0;
i <
s->mb_num;
i++) {
1101 const int mb_xy =
s->mb_index2xy[
i];
1102 int error =
s->error_status_table[mb_xy];
1113 if (decode_error_flags)
1123 for (
i = 0;
i <
s->mb_num;
i++) {
1124 const int mb_xy =
s->mb_index2xy[
i];
1125 int error =
s->error_status_table[mb_xy];
1129 s->cur_pic.mb_type[mb_xy] = guessed_mb_type;
1133 if (!(
s->last_pic.f &&
s->last_pic.f->data[0]) &&
1134 !(
s->next_pic.f &&
s->next_pic.f->data[0]))
1135 for (
i = 0;
i <
s->mb_num;
i++) {
1136 const int mb_xy =
s->mb_index2xy[
i];
1137 if (!
IS_INTRA(
s->cur_pic.mb_type[mb_xy]))
1142 for (mb_y = 0; mb_y <
s->mb_height; mb_y++) {
1143 for (mb_x = 0; mb_x <
s->mb_width; mb_x++) {
1144 const int mb_xy = mb_x + mb_y *
s->mb_stride;
1145 const int mb_type =
s->cur_pic.mb_type[mb_xy];
1146 const int dir = !(
s->last_pic.f &&
s->last_pic.f->data[0]);
1150 int error =
s->error_status_table[mb_xy];
1160 int mb_index = mb_x * 2 + mb_y * 2 *
s->b8_stride;
1163 for (j = 0; j < 4; j++) {
1164 s->mv[0][j][0] =
s->cur_pic.motion_val[dir][mb_index + (j & 1) + (j >> 1) *
s->b8_stride][0];
1165 s->mv[0][j][1] =
s->cur_pic.motion_val[dir][mb_index + (j & 1) + (j >> 1) *
s->b8_stride][1];
1169 s->mv[0][0][0] =
s->cur_pic.motion_val[dir][mb_x * 2 + mb_y * 2 *
s->b8_stride][0];
1170 s->mv[0][0][1] =
s->cur_pic.motion_val[dir][mb_x * 2 + mb_y * 2 *
s->b8_stride][1];
1173 s->decode_mb(
s->opaque, 0 ,
1174 mv_dir, mv_type, &
s->mv, mb_x, mb_y, 0, 0);
1180 for (mb_y = 0; mb_y <
s->mb_height; mb_y++) {
1181 for (mb_x = 0; mb_x <
s->mb_width; mb_x++) {
1182 int xy = mb_x * 2 + mb_y * 2 *
s->b8_stride;
1183 const int mb_xy = mb_x + mb_y *
s->mb_stride;
1184 const int mb_type =
s->cur_pic.mb_type[mb_xy];
1187 int error =
s->error_status_table[mb_xy];
1196 if (!(
s->last_pic.f &&
s->last_pic.f->data[0]))
1198 if (!(
s->next_pic.f &&
s->next_pic.f->data[0]))
1202 int time_pp =
s->pp_time;
1203 int time_pb =
s->pb_time;
1208 s->mv[0][0][0] =
s->next_pic.motion_val[0][xy][0] * time_pb / time_pp;
1209 s->mv[0][0][1] =
s->next_pic.motion_val[0][xy][1] * time_pb / time_pp;
1210 s->mv[1][0][0] =
s->next_pic.motion_val[0][xy][0] * (time_pb - time_pp) / time_pp;
1211 s->mv[1][0][1] =
s->next_pic.motion_val[0][xy][1] * (time_pb - time_pp) / time_pp;
1227 for (mb_y = 0; mb_y <
s->mb_height; mb_y++) {
1228 for (mb_x = 0; mb_x <
s->mb_width; mb_x++) {
1229 int dc, dcu, dcv, y, n;
1231 uint8_t *dest_y, *dest_cb, *dest_cr;
1232 const int mb_xy = mb_x + mb_y *
s->mb_stride;
1233 const int mb_type =
s->cur_pic.mb_type[mb_xy];
1237 if (
IS_INTRA(mb_type) &&
s->partitioned_frame)
1242 dest_y =
s->cur_pic.f->data[0] + mb_x * 16 + mb_y * 16 * linesize[0];
1243 dest_cb =
s->cur_pic.f->data[1] + mb_x * 8 + mb_y * 8 * linesize[1];
1244 dest_cr =
s->cur_pic.f->data[2] + mb_x * 8 + mb_y * 8 * linesize[2];
1246 dc_ptr = &
s->dc_val[0][mb_x * 2 + mb_y * 2 *
s->b8_stride];
1247 for (n = 0; n < 4; n++) {
1249 for (y = 0; y < 8; y++) {
1251 for (x = 0; x < 8; x++)
1252 dc += dest_y[x + (n & 1) * 8 +
1253 (y + (n >> 1) * 8) * linesize[0]];
1255 dc_ptr[(n & 1) + (n >> 1) *
s->b8_stride] = (
dc + 4) >> 3;
1258 if (!
s->cur_pic.f->data[2])
1262 for (y = 0; y < 8; y++) {
1264 for (x = 0; x < 8; x++) {
1265 dcu += dest_cb[x + y * linesize[1]];
1266 dcv += dest_cr[x + y * linesize[2]];
1269 s->dc_val[1][mb_x + mb_y *
s->mb_stride] = (dcu + 4) >> 3;
1270 s->dc_val[2][mb_x + mb_y *
s->mb_stride] = (dcv + 4) >> 3;
1275 guess_dc(
s,
s->dc_val[0],
s->mb_width*2,
s->mb_height*2,
s->b8_stride, 1);
1276 guess_dc(
s,
s->dc_val[1],
s->mb_width ,
s->mb_height ,
s->mb_stride, 0);
1277 guess_dc(
s,
s->dc_val[2],
s->mb_width ,
s->mb_height ,
s->mb_stride, 0);
1281 filter181(
s->dc_val[0],
s->mb_width * 2,
s->mb_height * 2,
s->b8_stride);
1285 for (mb_y = 0; mb_y <
s->mb_height; mb_y++) {
1286 for (mb_x = 0; mb_x <
s->mb_width; mb_x++) {
1287 uint8_t *dest_y, *dest_cb, *dest_cr;
1288 const int mb_xy = mb_x + mb_y *
s->mb_stride;
1289 const int mb_type =
s->cur_pic.mb_type[mb_xy];
1291 int error =
s->error_status_table[mb_xy];
1298 dest_y =
s->cur_pic.f->data[0] + mb_x * 16 + mb_y * 16 * linesize[0];
1299 dest_cb =
s->cur_pic.f->data[1] + mb_x * 8 + mb_y * 8 * linesize[1];
1300 dest_cr =
s->cur_pic.f->data[2] + mb_x * 8 + mb_y * 8 * linesize[2];
1301 if (!
s->cur_pic.f->data[2])
1302 dest_cb = dest_cr =
NULL;
1304 put_dc(
s, dest_y, dest_cb, dest_cr, mb_x, mb_y);
1312 s->mb_height * 2, linesize[0], 1);
1316 s->mb_height * 2, linesize[0], 1);
1318 if (
s->cur_pic.f->data[2]) {
1320 s->mb_height, linesize[1], 0);
1322 s->mb_height, linesize[2], 0);
1324 s->mb_height, linesize[1], 0);
1326 s->mb_height, linesize[2], 0);
1331 for (
i = 0;
i <
s->mb_num;
i++) {
1332 const int mb_xy =
s->mb_index2xy[
i];
1333 int error =
s->error_status_table[mb_xy];
1337 s->mbskip_table[mb_xy] = 0;
1339 if (
s->mbintra_table)
1340 s->mbintra_table[mb_xy] = 1;
1348 for (
i = 0;
i < 2;
i++) {
1351 s->cur_pic.ref_index[
i] =
NULL;
1352 s->cur_pic.motion_val[
i] =
NULL;