Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
Dmotion_est.c593 const int mot_stride = s->b8_stride; in h263_mv4_search() local
611 P_TOP[0] = s->current_picture.motion_val[0][mot_xy - mot_stride ][0]; in h263_mv4_search()
612 P_TOP[1] = s->current_picture.motion_val[0][mot_xy - mot_stride ][1]; in h263_mv4_search()
613 P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][0]; in h263_mv4_search()
614 P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][1]; in h263_mv4_search()
752 const int mot_stride= s->mb_stride; in interlaced_search() local
753 const int xy= s->mb_x + s->mb_y*mot_stride; in interlaced_search()
785 P_TOP[0] = mv_table[xy - mot_stride][0]; in interlaced_search()
786 P_TOP[1] = mv_table[xy - mot_stride][1]; in interlaced_search()
787 P_TOPRIGHT[0] = mv_table[xy - mot_stride + 1][0]; in interlaced_search()
[all …]
Dmpegvideo_motion.c672 const int mot_stride = s->b8_stride; in apply_obmc() local
673 const int mot_xy = mb_x * 2 + mb_y * 2 * mot_stride; in apply_obmc()
682 cur_frame->motion_val[0][mot_xy + mot_stride]); in apply_obmc()
684 cur_frame->motion_val[0][mot_xy + mot_stride + 1]); in apply_obmc()
687 cur_frame->motion_val[0][mot_xy + mot_stride]); in apply_obmc()
689 cur_frame->motion_val[0][mot_xy + mot_stride + 1]); in apply_obmc()
696 cur_frame->motion_val[0][mot_xy - mot_stride]); in apply_obmc()
698 cur_frame->motion_val[0][mot_xy - mot_stride + 1]); in apply_obmc()
707 cur_frame->motion_val[0][mot_xy - 1 + mot_stride]); in apply_obmc()
716 cur_frame->motion_val[0][mot_xy + 2 + mot_stride]); in apply_obmc()
Derror_resilience.c398 ptrdiff_t mot_step, mot_stride; in guess_mv() local
410 set_mv_strides(s, &mot_step, &mot_stride); in guess_mv()
431 const int mot_index= (mb_x + mb_y*mot_stride) * mot_step; in guess_mv()
518 mot_index = (mb_x + mb_y * mot_stride) * mot_step; in guess_mv()
540 s->cur_pic.motion_val[0][mot_index - mot_stride * mot_step][0]; in guess_mv()
542 s->cur_pic.motion_val[0][mot_index - mot_stride * mot_step][1]; in guess_mv()
549 s->cur_pic.motion_val[0][mot_index + mot_stride * mot_step][0]; in guess_mv()
551 s->cur_pic.motion_val[0][mot_index + mot_stride * mot_step][1]; in guess_mv()
674 … s->cur_pic.motion_val[0][mot_index + i + j * mot_stride][0] = s->mv[0][0][0]; in guess_mv()
675 … s->cur_pic.motion_val[0][mot_index + i + j * mot_stride][1] = s->mv[0][0][1]; in guess_mv()