mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
24 lines
896 B
Java
24 lines
896 B
Java
package androidx.media3.exoplayer.mediacodec;
|
|
|
|
import android.media.MediaCodec;
|
|
import androidx.media3.common.util.Util;
|
|
import androidx.media3.decoder.DecoderException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class MediaCodecDecoderException extends DecoderException {
|
|
public final MediaCodecInfo codecInfo;
|
|
public final String diagnosticInfo;
|
|
|
|
public MediaCodecDecoderException(Throwable th, MediaCodecInfo mediaCodecInfo) {
|
|
super("Decoder failed: " + (mediaCodecInfo == null ? null : mediaCodecInfo.name), th);
|
|
this.codecInfo = mediaCodecInfo;
|
|
this.diagnosticInfo = Util.SDK_INT >= 21 ? getDiagnosticInfoV21(th) : null;
|
|
}
|
|
|
|
private static String getDiagnosticInfoV21(Throwable th) {
|
|
if (th instanceof MediaCodec.CodecException) {
|
|
return ((MediaCodec.CodecException) th).getDiagnosticInfo();
|
|
}
|
|
return null;
|
|
}
|
|
}
|