Searched refs:block_sum (Results 1 - 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | svq1enc.c | 99 int block_sum[7] = { 0, 0, 0, 0, 0, 0 }; in encode_block() local 122 block_sum[0] += v; in encode_block() 136 block_sum[0] += v; in encode_block() 142 best_score -= (int)((unsigned)block_sum[0] * block_sum[0] >> (level + 3)); in encode_block() 143 best_mean = block_sum[0] + (size >> 1) >> (level + 3); in encode_block() 158 diff = block_sum[stage] - sum; in encode_block() 174 block_sum[stage + 1] = block_sum[stage] - best_vector_sum; in encode_block()
|
H A D | mobiclip.c | 815 static int block_sum(const uint8_t *block, int w, int h, int linesize) in block_sum() function 886 int left = block_sum(frame->data[plane] + ay * frame->linesize[plane] + ax - 1, in predict_intra() 888 int top = block_sum(frame->data[plane] + (ay - 1) * frame->linesize[plane] + ax, in predict_intra() 893 fill = (block_sum(frame->data[plane] + ay * frame->linesize[plane] + ax - 1, in predict_intra() 896 fill = (block_sum(frame->data[plane] + (ay - 1) * frame->linesize[plane] + ax, in predict_intra()
|
Completed in 4 milliseconds