Home
last modified time | relevance | path

Searched refs:mot_val (Results 1 – 4 of 4) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dituh263dec.c344 int16_t *mot_val; in preview_obmc() local
359 mot_val = s->current_picture.motion_val[0][s->block_index[0]]; in preview_obmc()
360 mot_val[0 ]= mot_val[2 ]= in preview_obmc()
361 mot_val[0+stride]= mot_val[2+stride]= 0; in preview_obmc()
362 mot_val[1 ]= mot_val[3 ]= in preview_obmc()
363 mot_val[1+stride]= mot_val[3+stride]= 0; in preview_obmc()
386 mot_val= ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y); in preview_obmc()
397 mot_val[0 ]= mot_val[2 ]= in preview_obmc()
398 mot_val[0+stride]= mot_val[2+stride]= mx; in preview_obmc()
399 mot_val[1 ]= mot_val[3 ]= in preview_obmc()
[all …]
Dh263.c194 int16_t *A, *B, *C, (*mot_val)[2]; in ff_h263_pred_motion() local
198 mot_val = s->current_picture.motion_val[dir] + s->block_index[block]; in ff_h263_pred_motion()
200 A = mot_val[ - 1]; in ff_h263_pred_motion()
209 C = mot_val[off[block] - wrap]; in ff_h263_pred_motion()
223 C = mot_val[off[block] - wrap]; in ff_h263_pred_motion()
231 B = mot_val[ - wrap]; in ff_h263_pred_motion()
232 C = mot_val[off[block] - wrap]; in ff_h263_pred_motion()
240 B = mot_val[ - wrap]; in ff_h263_pred_motion()
241 C = mot_val[off[block] - wrap]; in ff_h263_pred_motion()
245 return *mot_val; in ff_h263_pred_motion()
Dmpeg4videodec.c819 int16_t *const mot_val = s->current_picture.motion_val[0][s->block_index[0]]; in mpeg4_decode_partition_a() local
844 mot_val[0] = in mpeg4_decode_partition_a()
845 mot_val[2] = in mpeg4_decode_partition_a()
846 mot_val[0 + stride] = in mpeg4_decode_partition_a()
847 mot_val[2 + stride] = mx; in mpeg4_decode_partition_a()
848 mot_val[1] = in mpeg4_decode_partition_a()
849 mot_val[3] = in mpeg4_decode_partition_a()
850 mot_val[1 + stride] = in mpeg4_decode_partition_a()
851 mot_val[3 + stride] = my; in mpeg4_decode_partition_a()
874 mot_val[0] = in mpeg4_decode_partition_a()
[all …]
Dwmv2dec.c366 int16_t *A, *B, *C, *mot_val; in wmv2_pred_motion() local
371 mot_val = s->current_picture.motion_val[0][xy]; in wmv2_pred_motion()
404 return mot_val; in wmv2_pred_motion()