12 lines
317 B
Java
12 lines
317 B
Java
package com.bumptech.glide.load;
|
|
|
|
import com.bumptech.glide.load.engine.Resource;
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface ResourceDecoder<T, Z> {
|
|
Resource<Z> a(T t, int i, int i2, Options options) throws IOException;
|
|
|
|
boolean a(T t, Options options) throws IOException;
|
|
}
|