Searched refs:log2w (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | 4xm.c | 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() [all …]
|