Lines Matching refs:log2w
295 static inline void mcdc(uint16_t *dst, const uint16_t *src, int log2w, in mcdc() argument
301 switch (log2w) { in mcdc()
344 int log2w, int log2h, int stride) in decode_p_block() argument
350 av_assert0(log2w >= 0 && log2h >= 0); in decode_p_block()
352 index = size2index[log2h][log2w]; in decode_p_block()
363 end = start + stride * (f->avctx->height - h + 1) - (1 << log2w); in decode_p_block()
367 if ((ret = decode_p_block(f, dst, src, log2w, log2h, stride)) < 0) in decode_p_block()
371 log2w, log2h, stride); in decode_p_block()
373 log2w--; in decode_p_block()
374 if ((ret = decode_p_block(f, dst , src, log2w, log2h, stride)) < 0) in decode_p_block()
376 return decode_p_block(f, dst + (1 << log2w), in decode_p_block()
377 src + (1 << log2w), in decode_p_block()
378 log2w, log2h, stride); in decode_p_block()
384 if (log2w) { in decode_p_block()
425 mcdc(dst, src, log2w, h, stride, scale, dc); in decode_p_block()