• 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_stride

506     const int b_stride = s->b_width << s->block_max_depth;
509 int index= mb_x + mb_y*b_stride;
554 const int b_stride = s->b_width << s->block_max_depth;
556 int index= x + y*b_stride;
559 const BlockNode *top = y ? &s->block[index-b_stride] : &null_block;
560 const BlockNode *tl = y && x ? &s->block[index-b_stride-1] : left;
561 const BlockNode *tr = y && x+w<b_stride ? &s->block[index-b_stride+w] : tl;
566 if(x<0 || x>=b_stride || y>=b_height)
603 const int b_stride = s->b_width << s->block_max_depth;
620 ff_snow_pred_block(s, cur, tmp, ref_stride, sx, sy, block_w*2, block_h*2, &s->block[mb_x + mb_y*b_stride], plane_index, w, h);
641 && (mb_x == 0 || mb_x == b_stride-1)
686 if(mb_x == b_stride-2)
706 const int b_stride = s->b_width << s->block_max_depth;
743 BlockNode *b= &s->block[mb_x+mb_y*b_stride];
744 int merged= same_block(b,b+1) && same_block(b,b+b_stride) && same_block(b,b+b_stride+1);
889 const int b_stride= s->b_width << s->block_max_depth;
890 BlockNode *block= &s->block[mb_x + mb_y * b_stride];
896 av_assert2(mb_x<b_stride);
935 const int b_stride= s->b_width << s->block_max_depth;
936 BlockNode *block= &s->block[mb_x + mb_y * b_stride];
946 backup[2] = block[b_stride];
947 backup[3] = block[b_stride + 1];
950 av_assert2(mb_x<b_stride);
963 block[1]= block[b_stride]= block[b_stride+1]= *block;
974 block[b_stride]= backup[2];
975 block[b_stride+1]= backup[3];
984 const int b_stride= b_width;
1006 const int index= mb_x + mb_y * b_stride;
1008 BlockNode *tb = mb_y ? &s->block[index-b_stride ] : NULL;
1011 BlockNode *bb = mb_y+1<b_height ? &s->block[index+b_stride ] : NULL;
1012 BlockNode *tlb= mb_x && mb_y ? &s->block[index-b_stride-1] : NULL;
1013 BlockNode *trb= mb_x+1<b_width && mb_y ? &s->block[index-b_stride+1] : NULL;
1014 BlockNode *blb= mb_x && mb_y+1<b_height ? &s->block[index+b_stride-1] : NULL;
1015 BlockNode *brb= mb_x+1<b_width && mb_y+1<b_height ? &s->block[index+b_stride+1] : NULL;
1037 if(mb_x==b_stride-1)
1104 check_block_inter(s, mb_x, mb_y, mvr[-b_stride][0], mvr[-b_stride][1], obmc_edged, &best_rd);
1110 check_block_inter(s, mb_x, mb_y, mvr[b_stride][0], mvr[b_stride][1], obmc_edged, &best_rd);
1169 const int index= mb_x + mb_y * b_stride;
1174 b[2]= b[0]+b_stride;