Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_mbgraph.c84 unsigned int err, tmp_err; in do_16x16_motion_search() local
96 tmp_err = do_16x16_motion_iteration(cpi, &ref_mv->as_mv, &tmp_mv.as_mv, in do_16x16_motion_search()
98 if (tmp_err < err) { in do_16x16_motion_search()
99 err = tmp_err; in do_16x16_motion_search()
106 unsigned int tmp_err; in do_16x16_motion_search() local
110 tmp_err = do_16x16_motion_iteration(cpi, &zero_ref_mv.as_mv, &tmp_mv.as_mv, in do_16x16_motion_search()
112 if (tmp_err < err) { in do_16x16_motion_search()
114 err = tmp_err; in do_16x16_motion_search()
Dvp9_firstpass.c396 int num00, tmp_err, n, sr = 0; in first_pass_motion_search() local
416 tmp_err = cpi->diamond_search_sad(x, &ref_mv_full, &tmp_mv, in first_pass_motion_search()
421 if (tmp_err < INT_MAX) in first_pass_motion_search()
422 tmp_err = vp9_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1); in first_pass_motion_search()
423 if (tmp_err < INT_MAX - new_mv_mode_penalty) in first_pass_motion_search()
424 tmp_err += new_mv_mode_penalty; in first_pass_motion_search()
426 if (tmp_err < *best_motion_err) { in first_pass_motion_search()
427 *best_motion_err = tmp_err; in first_pass_motion_search()
442 tmp_err = cpi->diamond_search_sad(x, &ref_mv_full, &tmp_mv, in first_pass_motion_search()
447 if (tmp_err < INT_MAX) in first_pass_motion_search()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dfirstpass.c448 int tmp_err; in first_pass_motion_search() local
465 tmp_err = cpi->diamond_search_sad(x, b, d, &ref_mv_full, &tmp_mv, step_param, in first_pass_motion_search()
468 if ( tmp_err < INT_MAX-new_mv_mode_penalty ) in first_pass_motion_search()
469 tmp_err += new_mv_mode_penalty; in first_pass_motion_search()
471 if (tmp_err < *best_motion_err) in first_pass_motion_search()
473 *best_motion_err = tmp_err; in first_pass_motion_search()
490 tmp_err = cpi->diamond_search_sad(x, b, d, &ref_mv_full, &tmp_mv, in first_pass_motion_search()
494 if ( tmp_err < INT_MAX-new_mv_mode_penalty ) in first_pass_motion_search()
495 tmp_err += new_mv_mode_penalty; in first_pass_motion_search()
497 if (tmp_err < *best_motion_err) in first_pass_motion_search()
[all …]