VideoBitmapDecoder
An com.bumptech.glide.load.ResourceDecoder that can decode a thumbnail frame from a android.os.ParcelFileDescriptor containing a video.
Deprecated
Use parcel instead. This class may be removed and VideoDecoder may become final in a future version of Glide.
See also
android.media.MediaMetadataRetriever
Constructors
Functions
Link copied to clipboard
open fun asset(bitmapPool: BitmapPool): ResourceDecoder<AssetFileDescriptor, Bitmap>
Content copied to clipboard
Link copied to clipboard
open fun byteBuffer(bitmapPool: BitmapPool): ResourceDecoder<ByteBuffer, Bitmap>
Content copied to clipboard
Link copied to clipboard
open fun decode( resource: T, outWidth: Int, outHeight: Int, options: Options): Resource<Bitmap>
Content copied to clipboard
abstract fun decode( source: T, width: Int, height: Int, options: Options): Resource<Z>
Content copied to clipboard
Returns a decoded resource from the given data or null if no resource could be decoded.
Link copied to clipboard
Link copied to clipboard
open fun parcel(bitmapPool: BitmapPool): ResourceDecoder<ParcelFileDescriptor, Bitmap>
Content copied to clipboard