• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/

Lines Matching defs:ref

82 static inline void init_ref(MotionEstContext *c, uint8_t *src[3], uint8_t *ref[3], uint8_t *ref2[3], int x, int y, int ref_index){
91 c->ref[0][i]= ref [i] + offset[i];
95 c->ref[ref_index][i]= ref2[i] + offset[i];
120 uint8_t * const * const ref= c->ref[ref_index];
142 c->qpel_put[1][fxy](dst, ref[0] + (fx>>2) + (fy>>2)*stride, stride);
143 c->qpel_avg[1][bxy](dst, ref[8] + (bx>>2) + (by>>2)*stride, stride);
145 c->hpel_put[1][fxy](dst, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 8);
146 c->hpel_avg[1][bxy](dst, ref[8] + (bx>>1) + (by>>1)*stride, stride, 8);
158 c->qpel_put[1][fxy](c->temp , ref[0] + (fx>>2) + (fy>>2)*stride , stride);
159 c->qpel_put[1][fxy](c->temp + 8 , ref[0] + (fx>>2) + (fy>>2)*stride + 8 , stride);
160 c->qpel_put[1][fxy](c->temp + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8*stride, stride);
161 c->qpel_put[1][fxy](c->temp + 8 + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8 + 8*stride, stride);
162 c->qpel_avg[1][bxy](c->temp , ref[8] + (bx>>2) + (by>>2)*stride , stride);
163 c->qpel_avg[1][bxy](c->temp + 8 , ref[8] + (bx>>2) + (by>>2)*stride + 8 , stride);
164 c->qpel_avg[1][bxy](c->temp + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8*stride, stride);
165 c->qpel_avg[1][bxy](c->temp + 8 + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8 + 8*stride, stride);
176 c->hpel_put[0][fxy](c->temp, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 16);
177 c->hpel_avg[0][bxy](c->temp, ref[8] + (bx>>1) + (by>>1)*stride, stride, 16);
187 c->qpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride); //FIXME prototype (add h)
197 c->hpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride, h);
203 d = cmp_func(s, src[0], ref[0] + x + y*stride, stride, h);
209 c->hpel_put[size+1][uvdxy](uvtemp , ref[1] + (x>>1) + (y>>1)*uvstride, uvstride, h>>1);
210 c->hpel_put[size+1][uvdxy](uvtemp+8, ref[2] + (x>>1) + (y>>1)*uvstride, uvstride, h>>1);
381 ptr = c->ref[ref_index][0] + (my * stride) + mx;
525 c->ref[1][0] = c->ref[0][0] + 8;
526 c->ref[2][0] = c->ref[0][0] + 8*stride;
527 c->ref[3][0] = c->ref[2][0] + 8;
592 uint8_t *ref= c->ref[block][0] + (mx4>>2) + (my4>>2)*stride;
596 s->dsp.put_no_rnd_qpel_pixels_tab[1][dxy](dest_y , ref , stride);
598 s->dsp.put_qpel_pixels_tab [1][dxy](dest_y , ref , stride);
600 uint8_t *ref= c->ref[block][0] + (mx4>>1) + (my4>>1)*stride;
604 s->dsp.put_no_rnd_pixels_tab[1][dxy](dest_y , ref , stride, h);
606 s->dsp.put_pixels_tab [1][dxy](dest_y , ref , stride, h);
672 c->ref[1+ref_index][0] = c->ref[0+ref_index][0] + s->linesize;
675 c->ref[1+ref_index][1] = c->ref[0+ref_index][1] + s->uvlinesize;
676 c->ref[1+ref_index][2] = c->ref[0+ref_index][2] + s->uvlinesize;
753 uint8_t *ref= c->ref[field_select+ref_index][0] + (mx_i>>1) + (my_i>>1)*stride;
757 s->dsp.put_no_rnd_pixels_tab[size][dxy](c->scratchpad, ref , stride, h);
759 s->dsp.put_pixels_tab [size][dxy](c->scratchpad, ref , stride, h);
1051 ppix = c->ref[0][0] + (my * s->linesize) + mx;
1349 uint8_t **ref_data= c->ref[0];
1350 uint8_t **ref2_data= c->ref[2];