Lines Matching defs:b_width
143 int size= s->b_width * s->b_height << 2*s->block_max_depth;
229 const int w= s->b_width << s->block_max_depth;
455 const int w= s->b_width << s->block_max_depth;
521 const int b_stride = s->b_width << s->block_max_depth;
569 const int b_stride = s->b_width << s->block_max_depth;
618 const int b_stride = s->b_width << s->block_max_depth;
721 const int b_stride = s->b_width << s->block_max_depth;
904 const int b_stride= s->b_width << s->block_max_depth;
950 const int b_stride= s->b_width << s->block_max_depth;
997 const int b_width = s->b_width << s->block_max_depth;
999 const int b_stride= b_width;
1007 for(mb_x= 0; mb_x<s->b_width; mb_x++)
1017 for(mb_x= 0; mb_x<b_width; mb_x++){
1025 BlockNode *rb = mb_x+1<b_width ? &s->block[index +1] : NULL;
1028 BlockNode *trb= mb_x+1<b_width && mb_y ? &s->block[index-b_stride+1] : NULL;
1030 BlockNode *brb= mb_x+1<b_width && mb_y+1<b_height ? &s->block[index+b_stride+1] : NULL;
1070 if(mb_x==0 || mb_y==0 || mb_x==b_width-1 || mb_y==b_height-1){
1184 for(mb_x= 0; mb_x<b_width; mb_x+=2){
1224 int w= s->b_width;
1580 if ((ret = ff_alloc_packet(avctx, pkt, s->b_width*s->b_height*MB_SIZE*MB_SIZE*3 + AV_INPUT_BUFFER_MIN_SIZE)) < 0)