Rabbit-R1/android (non root)/java/sources/com/google/android/exoplayer2/util/FrameInfo.java
2024-05-21 17:08:36 -04:00

18 lines
595 B
Java

package com.google.android.exoplayer2.util;
/* loaded from: classes2.dex */
public class FrameInfo {
public final int height;
public final float pixelWidthHeightRatio;
public final long streamOffsetUs;
public final int width;
public FrameInfo(int i, int i2, float f, long j) {
Assertions.checkArgument(i > 0, "width must be positive, but is: " + i);
Assertions.checkArgument(i2 > 0, "height must be positive, but is: " + i2);
this.width = i;
this.height = i2;
this.pixelWidthHeightRatio = f;
this.streamOffsetUs = j;
}
}