Searched refs:minBytesPerRow (Results 1 - 2 of 2) sorted by relevance

/haiku/src/apps/mediaplayer/supplier/
H A DMediaTrackVideoSupplier.cpp317 uint32 minBytesPerRow; local
319 minBytesPerRow = ((width * 2 + 3) / 4) * 4;
321 minBytesPerRow = width * 4;
322 bytesPerRow = max_c(bytesPerRow, minBytesPerRow);
349 minBytesPerRow = ((width * 2 + 3) / 4) * 4;
351 minBytesPerRow = width * 4;
352 if (minBytesPerRow > fFormat.u.raw_video.display.bytes_per_row) {
355 ret = _SetDecodedFormat(width, height, format, minBytesPerRow);
/haiku/src/servers/app/
H A DServerBitmap.cpp77 int32 minBytesPerRow = get_bytes_per_row(space, fWidth); local
79 fBytesPerRow = max_c(bytesPerRow, minBytesPerRow);

Completed in 40 milliseconds