mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
18 lines
595 B
Java
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;
|
|
}
|
|
}
|