Searched refs:v_blocks (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | flashsvenc.c | 134 int h_blocks, v_blocks, h_part, v_part, i, j; in encode_bitstream() local 149 v_blocks = 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()
|
D | flashsv.c | 271 int h_blocks, v_blocks, h_part, v_part, i, j, ret; in flashsv_decode_frame() local 310 v_blocks = 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()
|