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:
commit
cdac50bab3
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user