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

2423     const int b_stride= b_width;
2424 BlockNode *lt= &s->block[b_x + b_y*b_stride];
2426 BlockNode *lb= lt+b_stride;
2700 const int b_stride = s->b_width << s->block_max_depth;
2703 int index= mb_x + mb_y*b_stride;
2746 const int b_stride = s->b_width << s->block_max_depth;
2748 int index= x + y*b_stride;
2751 const BlockNode *top = y ? &s->block[index-b_stride] : &null_block;
2752 const BlockNode *tl = y && x ? &s->block[index-b_stride-1] : left;
2753 const BlockNode *tr = y && x+w<b_stride ? &s->block[index-b_stride+w] : tl;
2758 if(x<0 || x>=b_stride || y>=b_height)
2794 const int b_stride = s->b_width << s->block_max_depth;
2809 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);
2830 && (mb_x == 0 || mb_x == b_stride-1)
2875 if(mb_x == b_stride-2)
2894 const int b_stride = s->b_width << s->block_max_depth;
2929 BlockNode *b= &s->block[mb_x+mb_y*b_stride];
2930 int merged= same_block(b,b+1) && same_block(b,b+b_stride) && same_block(b,b+b_stride+1);
2948 const int b_stride= s->b_width << s->block_max_depth;
2949 BlockNode *block= &s->block[mb_x + mb_y * b_stride];
2954 assert(mb_x<b_stride);
2993 const int b_stride= s->b_width << s->block_max_depth;
2994 BlockNode *block= &s->block[mb_x + mb_y * b_stride];
2995 BlockNode backup[4]= {block[0], block[1], block[b_stride], block[b_stride+1]};
2999 assert(mb_x<b_stride);
3012 block[1]= block[b_stride]= block[b_stride+1]= *block;
3023 block[b_stride]= backup[2];
3024 block[b_stride+1]= backup[3];
3033 const int b_stride= b_width;
3055 const int index= mb_x + mb_y * b_stride;
3057 BlockNode *tb = mb_y ? &s->block[index-b_stride ] : NULL;
3060 BlockNode *bb = mb_y+1<b_height ? &s->block[index+b_stride ] : NULL;
3061 BlockNode *tlb= mb_x && mb_y ? &s->block[index-b_stride-1] : NULL;
3062 BlockNode *trb= mb_x+1<b_width && mb_y ? &s->block[index-b_stride+1] : NULL;
3063 BlockNode *blb= mb_x && mb_y+1<b_height ? &s->block[index+b_stride-1] : NULL;
3064 BlockNode *brb= mb_x+1<b_width && mb_y+1<b_height ? &s->block[index+b_stride+1] : NULL;
3085 if(mb_x==b_stride-1)
3151 check_block_inter(s, mb_x, mb_y, mvr[-b_stride][0], mvr[-b_stride][1], *obmc_edged, &best_rd);
3157 check_block_inter(s, mb_x, mb_y, mvr[b_stride][0], mvr[b_stride][1], *obmc_edged, &best_rd);
3218 const int index= mb_x + mb_y * b_stride;
3223 b[2]= b[0]+b_stride;