• 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:IDWTELEM

25 void ff_slice_buffer_init(slice_buffer * buf, int line_count, int max_allocated_lines, int line_width, IDWTELEM * base_buffer)
33 buf->line = av_mallocz (sizeof(IDWTELEM *) * line_count);
34 buf->data_stack = av_malloc (sizeof(IDWTELEM *) * max_allocated_lines);
37 buf->data_stack[i] = av_malloc (sizeof(IDWTELEM) * line_width);
43 IDWTELEM * ff_slice_buffer_load_line(slice_buffer * buf, int line)
45 IDWTELEM * buffer;
61 IDWTELEM * buffer;
134 inv_lift(IDWTELEM *dst, IDWTELEM *src, IDWTELEM *ref,
200 inv_liftS(IDWTELEM *dst, IDWTELEM *src, IDWTELEM *ref,
403 static void horizontal_compose53i(IDWTELEM *b, int width){
404 IDWTELEM temp[width];
428 static void vertical_compose53iH0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, int width){
436 static void vertical_compose53iL0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, int width){
450 static void spatial_compose53i_init(DWTCompose *cs, IDWTELEM *buffer, int height, int stride){
459 IDWTELEM *b0= cs->b0;
460 IDWTELEM *b1= cs->b1;
461 IDWTELEM *b2= slice_buffer_get_line(sb, mirror(y+1, height-1) * stride_line);
462 IDWTELEM *b3= slice_buffer_get_line(sb, mirror(y+2, height-1) * stride_line);
484 static void spatial_compose53i_dy(DWTCompose *cs, IDWTELEM *buffer, int width, int height, int stride){
486 IDWTELEM *b0= cs->b0;
487 IDWTELEM *b1= cs->b1;
488 IDWTELEM *b2= buffer + mirror(y+1, height-1)*stride;
489 IDWTELEM *b3= buffer + mirror(y+2, height-1)*stride;
502 static void av_unused spatial_compose53i(IDWTELEM *buffer, int width, int height, int stride){
510 void ff_snow_horizontal_compose97i(IDWTELEM *b, int width){
511 IDWTELEM temp[width];
546 static void vertical_compose97iH0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, int width){
554 static void vertical_compose97iH1(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, int width){
562 static void vertical_compose97iL0(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, int width){
574 static void vertical_compose97iL1(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, int width){
582 void ff_snow_vertical_compose97i(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width){
605 static void spatial_compose97i_init(DWTCompose *cs, IDWTELEM *buffer, int height, int stride){
616 IDWTELEM *b0= cs->b0;
617 IDWTELEM *b1= cs->b1;
618 IDWTELEM *b2= cs->b2;
619 IDWTELEM *b3= cs->b3;
620 IDWTELEM *b4= slice_buffer_get_line(sb, mirror(y + 3, height - 1) * stride_line);
621 IDWTELEM *b5= slice_buffer_get_line(sb, mirror(y + 4, height - 1) * stride_line);
642 static void spatial_compose97i_dy(DWTCompose *cs, IDWTELEM *buffer, int width, int height, int stride){
644 IDWTELEM *b0= cs->b0;
645 IDWTELEM *b1= cs->b1;
646 IDWTELEM *b2= cs->b2;
647 IDWTELEM *b3= cs->b3;
648 IDWTELEM *b4= buffer + mirror(y+3, height-1)*stride;
649 IDWTELEM *b5= buffer + mirror(y+4, height-1)*stride;
666 static void av_unused spatial_compose97i(IDWTELEM *buffer, int width, int height, int stride){
700 static void ff_spatial_idwt_init(DWTCompose *cs, IDWTELEM *buffer, int width, int height, int stride, int type, int decomposition_count){
710 static void ff_spatial_idwt_slice(DWTCompose *cs, IDWTELEM *buffer, int width, int height, int stride, int type, int decomposition_count, int y){
727 void ff_spatial_idwt(IDWTELEM *buffer, int width, int height, int stride, int type, int decomposition_count){