45 lines
1.6 KiB
Java
45 lines
1.6 KiB
Java
package com.ubt.jimu.video;
|
|
|
|
import android.content.Context;
|
|
import java.util.concurrent.Callable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class VideoCompressTask implements Callable<Configuration> {
|
|
private final Context a;
|
|
private final OnCompressListener b;
|
|
private Configuration c;
|
|
private float d;
|
|
|
|
public VideoCompressTask(Context context, Configuration configuration, OnCompressListener onCompressListener) {
|
|
this.c = configuration;
|
|
this.a = context;
|
|
this.b = onCompressListener;
|
|
}
|
|
|
|
/* JADX WARN: Can't rename method to resolve collision */
|
|
/* JADX WARN: Code restructure failed: missing block: B:32:0x00ef, code lost:
|
|
|
|
if (r0.exists() != false) goto L28;
|
|
*/
|
|
/* JADX WARN: Code restructure failed: missing block: B:33:0x00f1, code lost:
|
|
|
|
r0.delete();
|
|
*/
|
|
/* JADX WARN: Code restructure failed: missing block: B:52:0x013f, code lost:
|
|
|
|
if (r0.exists() != false) goto L28;
|
|
*/
|
|
@Override // java.util.concurrent.Callable
|
|
/*
|
|
Code decompiled incorrectly, please refer to instructions dump.
|
|
To view partially-correct code enable 'Show inconsistent code' option in preferences
|
|
*/
|
|
public com.ubt.jimu.video.Configuration call() throws java.lang.Exception {
|
|
/*
|
|
Method dump skipped, instructions count: 407
|
|
To view this dump change 'Code comments level' option to 'DEBUG'
|
|
*/
|
|
throw new UnsupportedOperationException("Method not decompiled: com.ubt.jimu.video.VideoCompressTask.call():com.ubt.jimu.video.Configuration");
|
|
}
|
|
}
|