Transformer: flatten slow mo video at normal speed

Slow motion segments are not taken into account yet.

PiperOrigin-RevId: 339678840
This commit is contained in:
kimvde 2020-10-29 16:03:18 +00:00 committed by Oliver Woodman
parent cb1afa4b1a
commit 8f6b46f570

View File

@ -34,6 +34,11 @@ public final class MdtaMetadataEntry implements Metadata.Entry {
public static final String KEY_ANDROID_TEMPORAL_LAYER_COUNT =
"com.android.video.temporal_layers_count";
/** Type indicator for a 32-bit floating point value. */
public static final int TYPE_INDICATOR_FLOAT = 23;
/** Type indicator for a 32-bit integer. */
public static final int TYPE_INDICATOR_INT = 67;
/** The metadata key name. */
public final String key;
/** The payload. The interpretation of the value depends on {@link #typeIndicator}. */