Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_rdopt.c73 int64_t this_sse; member
485 unsigned this_sse = 0; in pixel_sse() local
494 dst + r * dst_stride * 4 + c * 4, dst_stride, &this_sse); in pixel_sse()
495 sse += this_sse; in pixel_sse()
550 int64_t this_sse; in dist_block() local
557 coeff, dqcoeff, 16 << ss_txfrm_size, &this_sse, bd) >> in dist_block()
561 vp9_block_error(coeff, dqcoeff, 16 << ss_txfrm_size, &this_sse) >> in dist_block()
564 *out_sse = this_sse >> shift; in dist_block()
767 args->this_sse += sse; in block_rd_txfm()
808 *sse = args.this_sse; in txfm_rd_in_plane()
[all …]
Dvp9_pickmode.c1027 int64_t this_sse = INT64_MAX; in estimate_block_intra() local
1029 block_yrd(cpi, x, &this_rdc, &args->skippable, &this_sse, bsize_tx, in estimate_block_intra()
1947 int64_t this_sse; in vp9_pick_inter_mode() local
2243 this_sse = (int64_t)sse_y; in vp9_pick_inter_mode()
2244 block_yrd(cpi, x, &this_rdc, &is_skippable, &this_sse, bsize, in vp9_pick_inter_mode()
2252 RDCOST(x->rdmult, x->rddiv, 0, this_sse)) { in vp9_pick_inter_mode()
2256 this_rdc.dist = this_sse; in vp9_pick_inter_mode()
/external/libaom/libaom/av1/encoder/
Drdopt.c2285 int64_t this_sse; in dist_block_tx_domain() local
2293 *out_dist = av1_highbd_block_error(coeff, dqcoeff, buffer_length, &this_sse, in dist_block_tx_domain()
2296 *out_dist = av1_block_error(coeff, dqcoeff, buffer_length, &this_sse); in dist_block_tx_domain()
2299 *out_sse = RIGHT_SIGNED_SHIFT(this_sse, shift); in dist_block_tx_domain()
2438 unsigned int this_sse; in get_2x2_normalized_sses_and_sads() local
2440 dst_stride, &this_sse); in get_2x2_normalized_sses_and_sads()
2441 sse_norm_arr[row * 2 + col] = (double)this_sse / num_samples_half; in get_2x2_normalized_sses_and_sads()