Lines Matching defs:log2w
297 static inline void mcdc(uint16_t *dst, const uint16_t *src, int log2w,
303 switch (log2w) {
346 int log2w, int log2h, int stride)
352 av_assert0(log2w >= 0 && log2h >= 0);
354 index = size2index[log2h][log2w];
365 end = start + stride * (f->avctx->height - h + 1) - (1 << log2w);
369 if ((ret = decode_p_block(f, dst, src, log2w, log2h, stride)) < 0)
373 log2w, log2h, stride);
375 log2w--;
376 if ((ret = decode_p_block(f, dst , src, log2w, log2h, stride)) < 0)
378 return decode_p_block(f, dst + (1 << log2w),
379 src + (1 << log2w),
380 log2w, log2h, stride);
386 if (log2w) {
427 mcdc(dst, src, log2w, h, stride, scale, dc);