From 8f6b46f570b07bcd36cd93465539b2085f6d1fe5 Mon Sep 17 00:00:00 2001 From: kimvde Date: Thu, 29 Oct 2020 16:03:18 +0000 Subject: [PATCH] Transformer: flatten slow mo video at normal speed Slow motion segments are not taken into account yet. PiperOrigin-RevId: 339678840 --- .../android/exoplayer2/metadata/mp4/MdtaMetadataEntry.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library/common/src/main/java/com/google/android/exoplayer2/metadata/mp4/MdtaMetadataEntry.java b/library/common/src/main/java/com/google/android/exoplayer2/metadata/mp4/MdtaMetadataEntry.java index 913056f3c2..0f41c46c74 100644 --- a/library/common/src/main/java/com/google/android/exoplayer2/metadata/mp4/MdtaMetadataEntry.java +++ b/library/common/src/main/java/com/google/android/exoplayer2/metadata/mp4/MdtaMetadataEntry.java @@ -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}. */