Searched refs:log2h (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | 4xm.c | 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() 357 h = 1 << log2h; in decode_p_block() 366 log2h--; in decode_p_block() 367 if ((ret = decode_p_block(f, dst, src, log2w, log2h, stride)) < 0) in decode_p_block() 369 return decode_p_block(f, dst + (stride << log2h), in decode_p_block() 370 src + (stride << log2h), in decode_p_block() 371 log2w, log2h, stride); in decode_p_block() 374 if ((ret = decode_p_block(f, dst , src, log2w, log2h, stride)) < 0) in decode_p_block() [all …]
|