25 lines
621 B
Java
25 lines
621 B
Java
package o;
|
|
|
|
import android.graphics.SurfaceTexture;
|
|
import android.view.SurfaceHolder;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class RmV {
|
|
SurfaceTexture b;
|
|
SurfaceHolder c;
|
|
|
|
public RmV(SurfaceHolder surfaceHolder) {
|
|
if (surfaceHolder == null) {
|
|
throw new IllegalArgumentException("surfaceHolder may not be null");
|
|
}
|
|
this.c = surfaceHolder;
|
|
}
|
|
|
|
public RmV(SurfaceTexture surfaceTexture) {
|
|
if (surfaceTexture == null) {
|
|
throw new IllegalArgumentException("surfaceTexture may not be null");
|
|
}
|
|
this.b = surfaceTexture;
|
|
}
|
|
}
|