blob: f6f2bfbe765017ba50f56e85494b9d6ad7893e79 [file] [log] [blame]
package com.bumptech.glide.load.resource.bitmap;
import android.content.Context;
import android.graphics.Bitmap;
import android.os.ParcelFileDescriptor;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.DecodeFormat;
import com.bumptech.glide.load.ResourceDecoder;
import com.bumptech.glide.load.engine.Resource;
import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
import java.io.IOException;
/**
* An {@link com.bumptech.glide.load.ResourceDecoder} for decoding {@link android.graphics.Bitmap}s from
* {@link android.os.ParcelFileDescriptor} data.
*/
public class FileDescriptorBitmapDecoder implements ResourceDecoder<ParcelFileDescriptor, Bitmap> {
private final VideoBitmapDecoder bitmapDecoder;
private final BitmapPool bitmapPool;
private DecodeFormat decodeFormat;
public FileDescriptorBitmapDecoder(Context context) {
this(Glide.get(context).getBitmapPool(), DecodeFormat.DEFAULT);
}
public FileDescriptorBitmapDecoder(Context context, DecodeFormat decodeFormat) {
this(Glide.get(context).getBitmapPool(), decodeFormat);
}
public FileDescriptorBitmapDecoder(BitmapPool bitmapPool, DecodeFormat decodeFormat) {
this(new VideoBitmapDecoder(), bitmapPool, decodeFormat);
}
public FileDescriptorBitmapDecoder(VideoBitmapDecoder bitmapDecoder, BitmapPool bitmapPool,
DecodeFormat decodeFormat) {
this.bitmapDecoder = bitmapDecoder;
this.bitmapPool = bitmapPool;
this.decodeFormat = decodeFormat;
}
@Override
public Resource<Bitmap> decode(ParcelFileDescriptor source, int width, int height) throws IOException {
Bitmap bitmap = bitmapDecoder.decode(source, bitmapPool, width, height, decodeFormat);
return BitmapResource.obtain(bitmap, bitmapPool);
}
@Override
public String getId() {
return "FileDescriptorBitmapDecoder.com.bumptech.glide.load.data.bitmap";
}
}