1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-26 07:03:20 +00:00

Recycle Bitmap in transformation

This commit is contained in:
Stypox 2021-03-27 14:44:45 +01:00
parent fcef783bbb
commit 314964c5f9
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23

View File

@ -1235,12 +1235,18 @@ public final class Player implements
context.getResources()
.getDimension(R.dimen.player_notification_thumbnail_width),
source.getWidth());
return Bitmap.createScaledBitmap(
final Bitmap result = Bitmap.createScaledBitmap(
source,
(int) notificationThumbnailWidth,
(int) (source.getHeight()
/ (source.getWidth() / notificationThumbnailWidth)),
true);
if (result != source) {
source.recycle();
}
return result;
}
@Override