• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching defs:b_x

138     int b_x, b_y;
150 for(b_x=0; b_x<w; b_x++){
151 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*s->mb_stride;
155 color= dc[b_x + b_y*stride];
156 distance= b_x;
158 col [b_x + b_y*stride][1]= color;
159 dist[b_x + b_y*stride][1]= distance >= 0 ? b_x-distance : 9999;
163 for(b_x=w-1; b_x>=0; b_x--){
164 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*s->mb_stride;
168 color= dc[b_x + b_y*stride];
169 distance= b_x;
171 col [b_x + b_y*stride][0]= color;
172 dist[b_x + b_y*stride][0]= distance >= 0 ? distance-b_x : 9999;
175 for(b_x=0; b_x<w; b_x++){
179 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*s->mb_stride;
183 color= dc[b_x + b_y*stride];
186 col [b_x + b_y*stride][3]= color;
187 dist[b_x + b_y*stride][3]= distance >= 0 ? b_y-distance : 9999;
192 int mb_index_j= (b_x>>is_luma) + (b_y>>is_luma)*s->mb_stride;
196 color= dc[b_x + b_y*stride];
199 col [b_x + b_y*stride][2]= color;
200 dist[b_x + b_y*stride][2]= distance >= 0 ? distance-b_y : 9999;
205 for (b_x = 0; b_x < w; b_x++) {
208 mb_index = (b_x >> is_luma) + (b_y >> is_luma) * s->mb_stride;
219 int64_t weight = 256 * 256 * 256 * 16 / FFMAX(dist[b_x + b_y*stride][j], 1);
220 guess += weight*(int64_t)col[b_x + b_y*stride][j];
224 dc[b_x + b_y * stride] = guess;
241 int b_x, b_y, mvx_stride, mvy_stride;
248 for (b_x = 0; b_x < w - 1; b_x++) {
250 int left_status = s->error_status_table[( b_x >> is_luma) + (b_y >> is_luma) * s->mb_stride];
251 int right_status = s->error_status_table[((b_x + 1) >> is_luma) + (b_y >> is_luma) * s->mb_stride];
252 int left_intra = IS_INTRA(s->cur_pic.mb_type[( b_x >> is_luma) + (b_y >> is_luma) * s->mb_stride]);
253 int right_intra = IS_INTRA(s->cur_pic.mb_type[((b_x + 1) >> is_luma) + (b_y >> is_luma) * s->mb_stride]);
256 int offset = b_x * 8 + b_y * stride * 8;
257 int16_t *left_mv = s->cur_pic.motion_val[0][mvy_stride * b_y + mvx_stride * b_x];
258 int16_t *right_mv = s->cur_pic.motion_val[0][mvy_stride * b_y + mvx_stride * (b_x + 1)];
309 int b_x, b_y, mvx_stride, mvy_stride;
316 for (b_x = 0; b_x < w; b_x++) {
318 int top_status = s->error_status_table[(b_x >> is_luma) + (b_y >> is_luma) * s->mb_stride];
319 int bottom_status = s->error_status_table[(b_x >> is_luma) + ((b_y + 1) >> is_luma) * s->mb_stride];
320 int top_intra = IS_INTRA(s->cur_pic.mb_type[(b_x >> is_luma) + ( b_y >> is_luma) * s->mb_stride]);
321 int bottom_intra = IS_INTRA(s->cur_pic.mb_type[(b_x >> is_luma) + ((b_y + 1) >> is_luma) * s->mb_stride]);
324 int offset = b_x * 8 + b_y * stride * 8;
326 int16_t *top_mv = s->cur_pic.motion_val[0][mvy_stride * b_y + mvx_stride * b_x];
327 int16_t *bottom_mv = s->cur_pic.motion_val[0][mvy_stride * (b_y + 1) + mvx_stride * b_x];