Searched refs:h_part (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 148 h_part = s->image_width % block_width; in encode_bitstream() 159 for (i = 0; i < h_blocks + (h_part ? 1 : 0); i++) { in encode_bitstream() 161 int cur_blk_width = (i < h_blocks) ? block_width : h_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 309 h_part = s->image_width % s->block_width; 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() 381 for (i = 0; i < h_blocks + (h_part ? 1 : 0); i++) { in flashsv_decode_frame() 383 int cur_blk_width = (i < h_blocks) ? s->block_width : h_part; in flashsv_decode_frame() 478 i + j * (h_blocks + !!h_part))) in flashsv_decode_frame()
|