Merge pull request #4717 from Bnyro/master

fix: crash when scrubbing timebar on certain videos
This commit is contained in:
Bnyro 2023-09-08 15:52:11 +02:00 committed by GitHub
commit 1d7fce91fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,13 +21,12 @@ class OnlineTimeFrameReceiver(
* Cut off a new bitmap from the image that contains multiple preview thumbnails * Cut off a new bitmap from the image that contains multiple preview thumbnails
*/ */
private fun cutBitmapFromPreviewFrame(bitmap: Bitmap, previewFrame: PreviewFrame): Bitmap { private fun cutBitmapFromPreviewFrame(bitmap: Bitmap, previewFrame: PreviewFrame): Bitmap {
return Bitmap.createBitmap( val positionX = previewFrame.positionX * previewFrame.frameWidth
bitmap, val positionY = previewFrame.positionY * previewFrame.frameHeight
previewFrame.positionX * previewFrame.frameWidth, val width = minOf(previewFrame.frameWidth, bitmap.width - positionX)
previewFrame.positionY * previewFrame.frameHeight, val height = minOf(previewFrame.frameHeight, bitmap.height - positionY)
previewFrame.frameWidth,
previewFrame.frameHeight return Bitmap.createBitmap(bitmap, positionX, positionY, width, height)
)
} }
/** /**