1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-11-08 19:10:01 +00:00

Merge pull request #11596 from Thompson3142/fix_scrubbing_seekbar_preview_crash

Fix seekbar crashing on drag with faulty frameset
This commit is contained in:
Tobi 2024-10-27 16:19:44 +01:00 committed by GitHub
commit cdac50bab3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -168,6 +168,18 @@ public class SeekbarPreviewThumbnailHolder {
return null;
}
// Under some rare circumstances the YouTube API returns slightly too small storyboards,
// (or not the matching frame width/height)
// This would lead to createBitmap cutting out a bitmap that is out of bounds,
// so we need to adjust the bounds accordingly
if (srcBitMap.getWidth() < bounds[1] + frameset.getFrameWidth()) {
bounds[1] = srcBitMap.getWidth() - frameset.getFrameWidth();
}
if (srcBitMap.getHeight() < bounds[2] + frameset.getFrameHeight()) {
bounds[2] = srcBitMap.getHeight() - frameset.getFrameHeight();
}
// Cut out the corresponding bitmap form the "srcBitMap"
final Bitmap cutOutBitmap = Bitmap.createBitmap(srcBitMap, bounds[1], bounds[2],
frameset.getFrameWidth(), frameset.getFrameHeight());