Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavcodec/
Dflashsvenc.c134 int h_blocks, v_blocks, h_part, v_part, i, j; in encode_bitstream() local
150 v_part = s->image_height % block_height; in encode_bitstream()
153 for (j = 0; j < v_blocks + (v_part ? 1 : 0); j++) { in encode_bitstream()
156 int cur_blk_height = (j < v_blocks) ? block_height : v_part; in encode_bitstream()
Dflashsv.c271 int h_blocks, v_blocks, h_part, v_part, i, j, ret; in flashsv_decode_frame() local
311 v_part = s->image_height % s->block_height; in flashsv_decode_frame()
364 s->blocks = av_mallocz((v_blocks + !!v_part) * (h_blocks + !!h_part) * in flashsv_decode_frame()
369 h_blocks, v_blocks, h_part, v_part); in flashsv_decode_frame()
375 for (j = 0; j < v_blocks + (v_part ? 1 : 0); j++) { in flashsv_decode_frame()
378 int cur_blk_height = (j < v_blocks) ? s->block_height : v_part; in flashsv_decode_frame()
/third_party/ffmpeg/libpostproc/
Dpostprocess_altivec_template.c160 const vector signed short v_part##i = vec_and(mask, v_comp##i); in vertClassify_altivec()