• 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

43 static void find_sse(SnowContext *s, Plane *p, int *score, int score_stride, IDWTELEM *r0, IDWTELEM *r1, int level, int orientation){
71 static void dequantize_all(SnowContext *s, Plane *p, IDWTELEM *buffer, int width, int height){
77 IDWTELEM *dst= buffer + (b->ibuf - s->spatial_idwt_buffer);
86 IDWTELEM best_dequant[height * stride];
87 IDWTELEM idwt2_buffer[height * stride];
101 IDWTELEM *dst= best_dequant + (b->ibuf - s->spatial_idwt_buffer);
114 IDWTELEM *dst= idwt2_buffer + (b->ibuf - s->spatial_idwt_buffer);
115 IDWTELEM *best_dst= best_dequant + (b->ibuf - s->spatial_idwt_buffer);
119 memcpy(idwt2_buffer, best_dequant, height * stride * sizeof(IDWTELEM));
123 memcpy(idwt2_buffer, best_dequant, height * stride * sizeof(IDWTELEM));
150 memcpy(s->spatial_idwt_buffer, best_dequant, height * stride * sizeof(IDWTELEM)); //FIXME work with that directly instead of copy at the end
585 IDWTELEM *dst= (IDWTELEM*)s->m.obmc_scratchpad + plane_index*block_size*block_size*4; //FIXME change to unsigned
597 memset(dst, 0, obmc_stride*obmc_stride*sizeof(IDWTELEM));
677 IDWTELEM *pred= (IDWTELEM*)s->m.obmc_scratchpad + plane_index*block_size*block_size*4;
699 const IDWTELEM *pred1 = pred + y*obmc_stride;
779 static IDWTELEM zero_dst[4096]; //FIXME
833 static int encode_subband_c0run(SnowContext *s, SubBand *b, IDWTELEM *src, IDWTELEM *parent, int stride, int orientation){
953 static int encode_subband(SnowContext *s, SubBand *b, IDWTELEM *src, IDWTELEM *parent, int stride, int orientation){
1288 static void quantize(SnowContext *s, SubBand *b, IDWTELEM *dst, DWTELEM *src, int stride, int bias){
1349 static void dequantize(SnowContext *s, SubBand *b, IDWTELEM *src, int stride){
1371 static void decorrelate(SnowContext *s, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median){
1395 static void correlate(SnowContext *s, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median){
1539 IDWTELEM *buf= b->ibuf;
1588 IDWTELEM *ibuf= b->ibuf;
1834 memset(s->spatial_idwt_buffer, 0, sizeof(IDWTELEM)*w*h);