• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:DWTELEM

102 lift(DWTELEM *dst, DWTELEM *src, DWTELEM *ref,
167 liftS(DWTELEM *dst, DWTELEM *src, DWTELEM *ref,
234 static void horizontal_decompose53i(DWTELEM *b, int width){
235 DWTELEM temp[width];
283 static void vertical_decompose53iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){
291 static void vertical_decompose53iL0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){
299 static void spatial_decompose53i(DWTELEM *buffer, int width, int height, int stride){
301 DWTELEM *b0= buffer + mirror(-2-1, height-1)*stride;
302 DWTELEM *b1= buffer + mirror(-2 , height-1)*stride;
305 DWTELEM *b2= buffer + mirror(y+1, height-1)*stride;
306 DWTELEM *b3= buffer + mirror(y+2, height-1)*stride;
319 static void horizontal_decompose97i(DWTELEM *b, int width){
320 DWTELEM temp[width];
330 static void vertical_decompose97iH0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){
338 static void vertical_decompose97iH1(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){
346 static void vertical_decompose97iL0(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){
358 static void vertical_decompose97iL1(DWTELEM *b0, DWTELEM *b1, DWTELEM *b2, int width){
366 static void spatial_decompose97i(DWTELEM *buffer, int width, int height, int stride){
368 DWTELEM *b0= buffer + mirror(-4-1, height-1)*stride;
369 DWTELEM *b1= buffer + mirror(-4 , height-1)*stride;
370 DWTELEM *b2= buffer + mirror(-4+1, height-1)*stride;
371 DWTELEM *b3= buffer + mirror(-4+2, height-1)*stride;
374 DWTELEM *b4= buffer + mirror(y+3, height-1)*stride;
375 DWTELEM *b5= buffer + mirror(y+4, height-1)*stride;
392 void ff_spatial_dwt(DWTELEM *buffer, int width, int height, int stride, int type, int decomposition_count){