Searched refs:decode_q_branch (Results 1 – 1 of 1) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | snowdec.c | 158 static int decode_q_branch(SnowContext *s, int level, int x, int y){ in decode_q_branch() function 216 if ((res = decode_q_branch(s, level+1, 2*x+0, 2*y+0)) < 0 || in decode_q_branch() 217 (res = decode_q_branch(s, level+1, 2*x+1, 2*y+0)) < 0 || in decode_q_branch() 218 (res = decode_q_branch(s, level+1, 2*x+0, 2*y+1)) < 0 || in decode_q_branch() 219 (res = decode_q_branch(s, level+1, 2*x+1, 2*y+1)) < 0) in decode_q_branch() 435 if ((res = decode_q_branch(s, 0, x, y)) < 0) in decode_blocks()
|