mirror of
https://github.com/samsonjs/media.git
synced 2026-03-25 09:25:53 +00:00
Use getDecoderNames method, rather than duplicating logic.
PiperOrigin-RevId: 658368479
This commit is contained in:
parent
b951833aec
commit
34d3dc926d
1 changed files with 1 additions and 1 deletions
|
|
@ -188,7 +188,7 @@ import java.util.concurrent.atomic.AtomicInteger;
|
|||
if ((sequenceLoopCount * editedMediaItems.size() + currentMediaItemIndex)
|
||||
>= processedInputsSize) {
|
||||
MediaItem mediaItem = editedMediaItems.get(currentMediaItemIndex).mediaItem;
|
||||
ImmutableMap<Integer, String> decoders = currentAssetLoader.getDecoderNames();
|
||||
ImmutableMap<Integer, String> decoders = getDecoderNames();
|
||||
processedInputsBuilder.add(
|
||||
new ExportResult.ProcessedInput(
|
||||
mediaItem, decoders.get(C.TRACK_TYPE_AUDIO), decoders.get(C.TRACK_TYPE_VIDEO)));
|
||||
|
|
|
|||
Loading…
Reference in a new issue