Home
last modified time | relevance | path

Searched refs:mot_stride (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmotion_est.c591 const int mot_stride = s->b8_stride; in h263_mv4_search() local
609 P_TOP[0] = s->current_picture.motion_val[0][mot_xy - mot_stride ][0]; in h263_mv4_search()
610 P_TOP[1] = s->current_picture.motion_val[0][mot_xy - mot_stride ][1]; in h263_mv4_search()
611 P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][0]; in h263_mv4_search()
612 P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][1]; in h263_mv4_search()
750 const int mot_stride= s->mb_stride; in interlaced_search() local
751 const int xy= s->mb_x + s->mb_y*mot_stride; in interlaced_search()
783 P_TOP[0] = mv_table[xy - mot_stride][0]; in interlaced_search()
784 P_TOP[1] = mv_table[xy - mot_stride][1]; in interlaced_search()
785 P_TOPRIGHT[0] = mv_table[xy - mot_stride + 1][0]; in interlaced_search()
[all …]
Dmpegvideo_motion.c670 const int mot_stride = s->b8_stride; in apply_obmc() local
671 const int mot_xy = mb_x * 2 + mb_y * 2 * mot_stride; in apply_obmc()
680 cur_frame->motion_val[0][mot_xy + mot_stride]); in apply_obmc()
682 cur_frame->motion_val[0][mot_xy + mot_stride + 1]); in apply_obmc()
685 cur_frame->motion_val[0][mot_xy + mot_stride]); in apply_obmc()
687 cur_frame->motion_val[0][mot_xy + mot_stride + 1]); in apply_obmc()
694 cur_frame->motion_val[0][mot_xy - mot_stride]); in apply_obmc()
696 cur_frame->motion_val[0][mot_xy - mot_stride + 1]); in apply_obmc()
705 cur_frame->motion_val[0][mot_xy - 1 + mot_stride]); in apply_obmc()
714 cur_frame->motion_val[0][mot_xy + 2 + mot_stride]); in apply_obmc()
Derror_resilience.c399 ptrdiff_t mot_step, mot_stride; in guess_mv() local
411 set_mv_strides(s, &mot_step, &mot_stride); in guess_mv()
432 const int mot_index= (mb_x + mb_y*mot_stride) * mot_step; in guess_mv()
521 mot_index = (mb_x + mb_y * mot_stride) * mot_step; in guess_mv()
543 s->cur_pic.motion_val[0][mot_index - mot_stride * mot_step][0]; in guess_mv()
545 s->cur_pic.motion_val[0][mot_index - mot_stride * mot_step][1]; in guess_mv()
552 s->cur_pic.motion_val[0][mot_index + mot_stride * mot_step][0]; in guess_mv()
554 s->cur_pic.motion_val[0][mot_index + mot_stride * mot_step][1]; in guess_mv()
678 … s->cur_pic.motion_val[0][mot_index + i + j * mot_stride][0] = s->mv[0][0][0]; in guess_mv()
679 … s->cur_pic.motion_val[0][mot_index + i + j * mot_stride][1] = s->mv[0][0][1]; in guess_mv()