Commit 8f6b46f5 by kimvde Committed by Oliver Woodman

Transformer: flatten slow mo video at normal speed

Slow motion segments are not taken into account yet.

PiperOrigin-RevId: 339678840
parent cb1afa4b
...@@ -34,6 +34,11 @@ public final class MdtaMetadataEntry implements Metadata.Entry { ...@@ -34,6 +34,11 @@ public final class MdtaMetadataEntry implements Metadata.Entry {
public static final String KEY_ANDROID_TEMPORAL_LAYER_COUNT = public static final String KEY_ANDROID_TEMPORAL_LAYER_COUNT =
"com.android.video.temporal_layers_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. */ /** The metadata key name. */
public final String key; public final String key;
/** The payload. The interpretation of the value depends on {@link #typeIndicator}. */ /** The payload. The interpretation of the value depends on {@link #typeIndicator}. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment