• Home
  • Raw
  • Download

Lines Matching refs:bh

70     int bw, bh, bx, by;  member
104 for (y = 0; y < c->height; y += c->bh) { in zmbv_decode_xor_8()
105 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y); in zmbv_decode_xor_8()
147 output += c->width * c->bh; in zmbv_decode_xor_8()
148 prev += c->width * c->bh; in zmbv_decode_xor_8()
178 for (y = 0; y < c->height; y += c->bh) { in zmbv_decode_xor_16()
179 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y); in zmbv_decode_xor_16()
223 output += c->width * c->bh; in zmbv_decode_xor_16()
224 prev += c->width * c->bh; in zmbv_decode_xor_16()
257 for (y = 0; y < c->height; y += c->bh) { in zmbv_decode_xor_24()
258 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y); in zmbv_decode_xor_24()
308 output += stride * c->bh; in zmbv_decode_xor_24()
309 prev += stride * c->bh; in zmbv_decode_xor_24()
340 for (y = 0; y < c->height; y += c->bh) { in zmbv_decode_xor_32()
341 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y); in zmbv_decode_xor_32()
385 output += c->width * c->bh; in zmbv_decode_xor_32()
386 prev += c->width * c->bh; in zmbv_decode_xor_32()
437 c->bh = buf[5]; in decode_frame()
444 c->flags,hi_ver,lo_ver,c->comp,c->fmt,c->bw,c->bh); in decode_frame()
449 if (c->bw == 0 || c->bh == 0) { in decode_frame()
450 avpriv_request_sample(avctx, "Block size %ix%i", c->bw, c->bh); in decode_frame()
507 c->by = (c->height+ c->bh - 1) / c->bh; in decode_frame()
565 … if (c->decomp_len < 2LL * ((c->width + c->bw - 1) / c->bw) * ((c->height + c->bh - 1) / c->bh)) in decode_frame()