discord-jadx/app/src/main/java/androidx/core/graphics/ImageDecoderKt$decodeBitmap...

25 lines
1.3 KiB
Java

package androidx.core.graphics;
import android.graphics.ImageDecoder;
import d0.z.d.m;
import kotlin.Unit;
import kotlin.jvm.functions.Function3;
/* compiled from: ImageDecoder.kt */
public final class ImageDecoderKt$decodeBitmap$1 implements ImageDecoder.OnHeaderDecodedListener {
public final /* synthetic */ Function3<ImageDecoder, ImageDecoder.ImageInfo, ImageDecoder.Source, Unit> $action;
/* JADX DEBUG: Multi-variable search result rejected for r1v0, resolved type: kotlin.jvm.functions.Function3<? super android.graphics.ImageDecoder, ? super android.graphics.ImageDecoder$ImageInfo, ? super android.graphics.ImageDecoder$Source, kotlin.Unit> */
/* JADX WARN: Multi-variable type inference failed */
public ImageDecoderKt$decodeBitmap$1(Function3<? super ImageDecoder, ? super ImageDecoder.ImageInfo, ? super ImageDecoder.Source, Unit> function3) {
this.$action = function3;
}
@Override // android.graphics.ImageDecoder.OnHeaderDecodedListener
public final void onHeaderDecoded(ImageDecoder imageDecoder, ImageDecoder.ImageInfo imageInfo, ImageDecoder.Source source) {
m.checkNotNullParameter(imageDecoder, "decoder");
m.checkNotNullParameter(imageInfo, "info");
m.checkNotNullParameter(source, "source");
this.$action.invoke(imageDecoder, imageInfo, source);
}
}