Searched defs:maxBitmapSize (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/hardware/radio/
H A DRadioMetadata.java368 * are larger than maxBitmapSize.
371 * @param maxBitmapSize The maximum height/width for bitmaps contained
375 public Builder(RadioMetadata source, int maxBitmapSize) { argument
381 if (bmp.getHeight() > maxBitmapSize || bmp.getWidth() > maxBitmapSize) {
382 putBitmap(key, scaleBitmap(bmp, maxBitmapSize));
/frameworks/base/media/java/android/media/
H A DMediaMetadata.java647 * are larger than maxBitmapSize.
650 * @param maxBitmapSize The maximum height/width for bitmaps contained
654 public Builder(MediaMetadata source, int maxBitmapSize) { argument
660 if (bmp.getHeight() > maxBitmapSize || bmp.getWidth() > maxBitmapSize) {
661 putBitmap(key, scaleBitmap(bmp, maxBitmapSize));
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaMetadataCompat.java680 * are larger than maxBitmapSize.
683 * @param maxBitmapSize The maximum height/width for bitmaps contained
688 public Builder(MediaMetadataCompat source, int maxBitmapSize) { argument
694 if (bmp.getHeight() > maxBitmapSize || bmp.getWidth() > maxBitmapSize) {
695 putBitmap(key, scaleBitmap(bmp, maxBitmapSize));

Completed in 303 milliseconds