MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / spatial_compose97i_init

Function spatial_compose97i_init

libavcodec/dwt.c:605–611  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

603}
604
605static 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
613static void spatial_compose97i_dy_buffered(DWTContext *dsp, DWTCompose *cs, slice_buffer * sb, int width, int height, int stride_line){
614 int y = cs->y;

Callers 2

spatial_compose97iFunction · 0.85
ff_spatial_idwt_initFunction · 0.85

Calls 1

mirrorFunction · 0.85

Tested by

no test coverage detected