Searched refs:v_blocks (Results 1 - 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | flashsvenc.c | 135 int h_blocks, v_blocks, h_part, v_part, i, j; in encode_bitstream() local 150 v_blocks = s->image_height / block_height; in encode_bitstream() 154 for (j = 0; j < v_blocks + (v_part ? 1 : 0); j++) { in encode_bitstream() 157 int cur_blk_height = (j < v_blocks) ? block_height : v_part; in encode_bitstream()
|
H A D | flashsv.c | 275 int h_blocks, v_blocks, h_part, v_part, i, j, ret; in flashsv_decode_frame() local 314 v_blocks = s->image_height / s->block_height; in flashsv_decode_frame() 354 memset(s->blocks, 0, (v_blocks + !!v_part) * (h_blocks + !!h_part) * in flashsv_decode_frame() 358 s->blocks = av_mallocz((v_blocks + !!v_part) * (h_blocks + !!h_part) * in flashsv_decode_frame() 363 h_blocks, v_blocks, h_part, v_part); in flashsv_decode_frame() 369 for (j = 0; j < v_blocks + (v_part ? 1 : 0); j++) { in flashsv_decode_frame() 372 int cur_blk_height = (j < v_blocks) ? s->block_height : v_part; in flashsv_decode_frame()
|
Completed in 3 milliseconds