File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
libraries/extractor/src/main/java/androidx/media3/extractor/mp4 Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 176
176
@ SuppressWarnings ("ConstantCaseForConstants" )
177
177
public static final int TYPE_ddts = 0x64647473 ;
178
178
179
+ @ SuppressWarnings ("ConstantCaseForConstants" )
180
+ public static final int TYPE_udts = 0x75647473 ;
181
+
179
182
@ SuppressWarnings ("ConstantCaseForConstants" )
180
183
public static final int TYPE_tfdt = 0x74666474 ;
181
184
Original file line number Diff line number Diff line change @@ -1560,7 +1560,7 @@ private static void parseAudioSampleEntry(
1560
1560
// because these streams can carry simultaneously multiple representations of the same
1561
1561
// audio. Use stereo by default.
1562
1562
channelCount = 2 ;
1563
- } else if (childAtomType == Atom .TYPE_ddts ) {
1563
+ } else if (childAtomType == Atom .TYPE_ddts || childAtomType == Atom . TYPE_udts ) {
1564
1564
out .format =
1565
1565
new Format .Builder ()
1566
1566
.setId (trackId )
You can’t perform that action at this time.
0 commit comments