• 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 defs:b_stride

586     const int b_stride = s->b_width << s->block_max_depth;
589 int index= mb_x + mb_y*b_stride;
632 const int b_stride = s->b_width << s->block_max_depth;
634 int index= x + y*b_stride;
637 const BlockNode *top = y ? &s->block[index-b_stride] : &null_block;
638 const BlockNode *tl = y && x ? &s->block[index-b_stride-1] : left;
639 const BlockNode *tr = y && x+w<b_stride ? &s->block[index-b_stride+w] : tl;
644 if(x<0 || x>=b_stride || y>=b_height)
680 const int b_stride = s->b_width << s->block_max_depth;
695 ff_snow_pred_block(s, cur, tmp, ref_stride, sx, sy, block_w*2, block_w*2, &s->block[mb_x + mb_y*b_stride], plane_index, w, h);
716 && (mb_x == 0 || mb_x == b_stride-1)
761 if(mb_x == b_stride-2)
780 const int b_stride = s->b_width << s->block_max_depth;
815 BlockNode *b= &s->block[mb_x+mb_y*b_stride];
816 int merged= same_block(b,b+1) && same_block(b,b+b_stride) && same_block(b,b+b_stride+1);
961 const int b_stride= s->b_width << s->block_max_depth;
962 BlockNode *block= &s->block[mb_x + mb_y * b_stride];
968 assert(mb_x<b_stride);
1007 const int b_stride= s->b_width << s->block_max_depth;
1008 BlockNode *block= &s->block[mb_x + mb_y * b_stride];
1009 BlockNode backup[4]= {block[0], block[1], block[b_stride], block[b_stride+1]};
1014 assert(mb_x<b_stride);
1027 block[1]= block[b_stride]= block[b_stride+1]= *block;
1038 block[b_stride]= backup[2];
1039 block[b_stride+1]= backup[3];
1048 const int b_stride= b_width;
1070 const int index= mb_x + mb_y * b_stride;
1072 BlockNode *tb = mb_y ? &s->block[index-b_stride ] : NULL;
1075 BlockNode *bb = mb_y+1<b_height ? &s->block[index+b_stride ] : NULL;
1076 BlockNode *tlb= mb_x && mb_y ? &s->block[index-b_stride-1] : NULL;
1077 BlockNode *trb= mb_x+1<b_width && mb_y ? &s->block[index-b_stride+1] : NULL;
1078 BlockNode *blb= mb_x && mb_y+1<b_height ? &s->block[index+b_stride-1] : NULL;
1079 BlockNode *brb= mb_x+1<b_width && mb_y+1<b_height ? &s->block[index+b_stride+1] : NULL;
1100 if(mb_x==b_stride-1)
1166 check_block_inter(s, mb_x, mb_y, mvr[-b_stride][0], mvr[-b_stride][1], *obmc_edged, &best_rd);
1172 check_block_inter(s, mb_x, mb_y, mvr[b_stride][0], mvr[b_stride][1], *obmc_edged, &best_rd);
1231 const int index= mb_x + mb_y * b_stride;
1236 b[2]= b[0]+b_stride;