Lines Matching refs:width
113 void YuvGen(MS_U8 seed, MS_S32 width, MS_S32 height, volatile MS_U8 *buff);
114 void YuvGen_422(MS_U8 seed, MS_S32 width, MS_S32 height, volatile MS_U8 *buff);
237 void ConvertYuvFromTile(MS_S32 width, MS_S32 height, MS_S32 mode, MS_U8 *in_yuv, MS_U8 *out_yuv) in ConvertYuvFromTile() argument
249 image_x = width; in ConvertYuvFromTile()
251 MB_in_width = width >> 4 ; in ConvertYuvFromTile()
294 u_point = out_yuv + width * height + chrstart; in ConvertYuvFromTile()
295 v_point = out_yuv + width * height + ( width >> 1 ) * ( height >> 1 ) + chrstart; in ConvertYuvFromTile()
323 MS_S32 width;
337 width = atoi(argv[1]);
346 yuv = ( MS_U8 *) malloc( width * height * 1.5 ) ;
355 gogo(width,height,0);
361 gogo(width,height,1);
364 fwrite(yuv, width * height * 1.5 , 1 , fpout);
371 void YuvGen(MS_U8 seed, MS_S32 width, MS_S32 height, volatile MS_U8 *buff) in YuvGen() argument
376 MS_S32 MB_width = width >> 4; in YuvGen()
401 width <<= 1 ; in YuvGen()
428 void YuvGen_422(MS_U8 seed, MS_S32 width, MS_S32 height, volatile MS_U8 *buff) in YuvGen_422() argument
433 MS_S32 MB_width = width >> 4 ; in YuvGen_422()
457 width <<= 1 ; in YuvGen_422()
567 void yuv2tile(/*FILE *fp*/MS_U8 *output, MS_S32 width, MS_S32 height, MS_U8 *buff , MS_S32 Ypart) in yuv2tile() argument
582 image_x = width; in yuv2tile()
636 v_point = buff + /*width * height +*/ ( (width*height) >> 2 ) + chrstart; in yuv2tile()