Searched refs:blocks_h (Results 1 – 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | agm.c | 70 int blocks_h; member 329 for (int y = 0; y < s->blocks_h; y++) { in decode_intra_plane() 336 … s->idsp.idct_put(frame->data[plane] + (s->blocks_h - 1 - y) * 8 * frame->linesize[plane] + x * 8, in decode_intra_plane() 341 for (int y = 0; y < s->blocks_h; y++) { in decode_intra_plane() 347 … s->idsp.idct_put(frame->data[plane] + (s->blocks_h - 1 - y) * 8 * frame->linesize[plane] + x * 8, in decode_intra_plane() 412 for (int y = 0; y < s->blocks_h; y++) { in decode_inter_plane() 432 … copy_block8(frame->data[plane] + (s->blocks_h - 1 - y) * 8 * frame->linesize[plane] + x * 8, in decode_inter_plane() 433 … prev->data[plane] + ((s->blocks_h - 1 - y) * 8 - mv_y) * prev->linesize[plane] + (x * 8 + mv_x), in decode_inter_plane() 439 …s->idsp.add_pixels_clamped(&s->wblocks[x*64], frame->data[plane] + (s->blocks_h - 1 - y) * 8 * fra… in decode_inter_plane() 443 … s->idsp.idct_put(frame->data[plane] + (s->blocks_h - 1 - y) * 8 * frame->linesize[plane] + x * 8, in decode_inter_plane() [all …]
|
D | webp.c | 422 blocks_h = FFALIGN((h), 1 << block_bits) >> block_bits; \ 428 int ret, block_bits, width, blocks_w, blocks_h, x, y, max; in decode_entropy_image() local 436 ret = decode_entropy_coded_image(s, IMAGE_ROLE_ENTROPY, blocks_w, blocks_h); in decode_entropy_image() 461 int block_bits, blocks_w, blocks_h, ret; in parse_transform_predictor() local 466 blocks_h); in parse_transform_predictor() 477 int block_bits, blocks_w, blocks_h, ret; in parse_transform_color() local 482 blocks_h); in parse_transform_color()
|
/third_party/gstreamer/gstplugins_good/ext/jpeg/ |
D | smokecodec.c | 391 unsigned int blocks_w, blocks_h; in smokecodec_encode() local 412 blocks_h = height / (DCTSIZE * 2); in smokecodec_encode() 414 max = blocks_w * blocks_h; in smokecodec_encode() 477 find_best_size (encoding, &blocks_w, &blocks_h); in smokecodec_encode() 479 GST_DEBUG ("best: %d %d", blocks_w, blocks_h); in smokecodec_encode() 482 info->cinfo.image_height = blocks_h * DCTSIZE * 2; in smokecodec_encode() 616 int blocks_w, blocks_h; in smokecodec_decode() local 644 blocks_h = info->dinfo.image_height / (2 * DCTSIZE); in smokecodec_decode() 659 for (i = 0; i < blocks_h; i++) { in smokecodec_decode()
|