Searched refs:mot_val (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | ituh263dec.c | 341 int16_t *mot_val; in preview_obmc() local 356 mot_val = s->current_picture.motion_val[0][s->block_index[0]]; in preview_obmc() 357 mot_val[0 ]= mot_val[2 ]= in preview_obmc() 358 mot_val[0+stride]= mot_val[2+stride]= 0; in preview_obmc() 359 mot_val[1 ]= mot_val[3 ]= in preview_obmc() 360 mot_val[1+stride]= mot_val[3+stride]= 0; in preview_obmc() 383 mot_val= ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y); in preview_obmc() 394 mot_val[0 ]= mot_val[2 ]= in preview_obmc() 395 mot_val[0+stride]= mot_val[2+stride]= mx; in preview_obmc() 396 mot_val[1 ]= mot_val[3 ]= in preview_obmc() [all …]
|
D | h263.c | 323 int16_t *A, *B, *C, (*mot_val)[2]; in ff_h263_pred_motion() local 327 mot_val = s->current_picture.motion_val[dir] + s->block_index[block]; in ff_h263_pred_motion() 329 A = mot_val[ - 1]; in ff_h263_pred_motion() 338 C = mot_val[off[block] - wrap]; in ff_h263_pred_motion() 352 C = mot_val[off[block] - wrap]; in ff_h263_pred_motion() 360 B = mot_val[ - wrap]; in ff_h263_pred_motion() 361 C = mot_val[off[block] - wrap]; in ff_h263_pred_motion() 369 B = mot_val[ - wrap]; in ff_h263_pred_motion() 370 C = mot_val[off[block] - wrap]; in ff_h263_pred_motion() 374 return *mot_val; in ff_h263_pred_motion()
|
D | mpeg4videodec.c | 748 int16_t *const mot_val = s->current_picture.motion_val[0][s->block_index[0]]; in mpeg4_decode_partition_a() local 773 mot_val[0] = in mpeg4_decode_partition_a() 774 mot_val[2] = in mpeg4_decode_partition_a() 775 mot_val[0 + stride] = in mpeg4_decode_partition_a() 776 mot_val[2 + stride] = mx; in mpeg4_decode_partition_a() 777 mot_val[1] = in mpeg4_decode_partition_a() 778 mot_val[3] = in mpeg4_decode_partition_a() 779 mot_val[1 + stride] = in mpeg4_decode_partition_a() 780 mot_val[3 + stride] = my; in mpeg4_decode_partition_a() 803 mot_val[0] = in mpeg4_decode_partition_a() [all …]
|
D | wmv2dec.c | 297 int16_t *A, *B, *C, *mot_val; in wmv2_pred_motion() local 302 mot_val = s->current_picture.motion_val[0][xy]; in wmv2_pred_motion() 335 return mot_val; in wmv2_pred_motion()
|