Home | History | Annotate | Download | only in videodecoder

Lines Matching defs:cropWidth

1219     uint32_t cropWidth = mVideoFormatInfo.width - (mVideoFormatInfo.cropLeft + mVideoFormatInfo.cropRight);
1225 cropWidth = mVideoFormatInfo.width;
1227 int32_t size = cropWidth * cropHeight * 3 / 2;
1255 rawData->width = cropWidth;
1257 rawData->pitch[0] = cropWidth;
1258 rawData->pitch[1] = cropWidth;
1261 rawData->offset[1] = cropWidth * cropHeight;
1262 rawData->offset[2] = cropWidth * cropHeight * 3 / 2;
1284 stream_memcpy(dst, src, cropWidth);
1286 memcpy(dst, src, cropWidth);
1288 dst += cropWidth;
1295 stream_memcpy(dst, src, cropWidth);
1297 memcpy(dst, src, cropWidth);
1299 dst += cropWidth;