| 1498 | } |
| 1499 | |
| 1500 | static av_always_inline void predict_plane(SnowContext *s, IDWTELEM *buf, int plane_index, int add){ |
| 1501 | const int mb_h= s->b_height << s->block_max_depth; |
| 1502 | int mb_y; |
| 1503 | for(mb_y=0; mb_y<=mb_h; mb_y++) |
| 1504 | predict_slice(s, buf, plane_index, add, mb_y); |
| 1505 | } |
| 1506 | |
| 1507 | static void dequantize_slice_buffered(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){ |
| 1508 | const int w= b->width; |
no test coverage detected