Lines Matching refs:height
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
252 MB_in_height = height >> 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()
324 MS_S32 height;
338 height = atoi(argv[2]);
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
377 MS_S32 MB_height = height >> 4 ; in YuvGen()
400 height <<= 1 ; in YuvGen()
428 void YuvGen_422(MS_U8 seed, MS_S32 width, MS_S32 height, volatile MS_U8 *buff) in YuvGen_422() argument
434 MS_S32 MB_height = height >> 4 ; 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
584 MB_in_height = height >> 4; in yuv2tile()
636 v_point = buff + /*width * height +*/ ( (width*height) >> 2 ) + chrstart; in yuv2tile()