| 603 | } |
| 604 | |
| 605 | static void spatial_compose97i_init(DWTCompose *cs, IDWTELEM *buffer, int height, int stride){ |
| 606 | cs->b0 = buffer + mirror(-3-1, height-1)*stride; |
| 607 | cs->b1 = buffer + mirror(-3 , height-1)*stride; |
| 608 | cs->b2 = buffer + mirror(-3+1, height-1)*stride; |
| 609 | cs->b3 = buffer + mirror(-3+2, height-1)*stride; |
| 610 | cs->y = -3; |
| 611 | } |
| 612 | |
| 613 | static void spatial_compose97i_dy_buffered(DWTContext *dsp, DWTCompose *cs, slice_buffer * sb, int width, int height, int stride_line){ |
| 614 | int y = cs->y; |
no test coverage detected