Lines Matching defs:height
271 int height = i ? FFALIGN(avctx->height >> s->chroma_v_shift, 8) :
272 FFALIGN(avctx->height >> s->chroma_v_shift, 8);
276 h8 = FFALIGN(height, 8) / 8;
283 av_calloc(height * stride, sizeof(*s->plane[i].dwt_buf));
285 av_malloc_array(height * stride, sizeof(*s->plane[i].dwt_tmp));
303 s->plane[i].band[j][k].height = (height / 8) << j;
370 s->alpha = av_calloc(avctx->width * avctx->height, sizeof(*s->alpha));
378 int height, unsigned quantization)
382 for (int i = 0; i < height; i++) {
401 static void process_alpha(const int16_t *src, int width, int height, ptrdiff_t stride, int16_t *dst)
403 for (int i = 0; i < height; i++) {
438 int height = s->plane[plane].band[2][0].height;
447 process_alpha(input, avctx->width, avctx->height,
455 width * 2, height * 2);
465 width, height * 2);
473 width, height * 2);
477 height = s->plane[plane].band[1][0].height;
484 for (int i = 0; i < height * 2; i++) {
493 width * 2, height * 2);
501 width, height * 2);
509 width, height * 2);
513 height = s->plane[plane].band[0][0].height;
521 for (int i = 0; i < height * 2; i++) {
531 width * 2, height * 2);
539 width, height * 2);
547 width, height * 2);
550 ret = ff_alloc_packet(avctx, pkt, 64LL + s->planes * (2LL * avctx->width * avctx->height + 1000LL));
593 bytestream2_put_be16(pby, avctx->height);
610 int height = s->plane[p].band[0][0].height;
636 bytestream2_put_be16(pby, height);
650 for (int i = 0; i < height; i++) {
669 int height = s->plane[p].band[l][0].height;
690 bytestream2_put_be16(pby, height);
721 bytestream2_put_be16(pby, height);
738 quantize_band(data, width, a_width, height,
743 for (int m = 0; m < height; m++) {