From 9d147f22271b22b3d9bb6a5f8f1a132d6348694c Mon Sep 17 00:00:00 2001 From: Tianyi Feng Date: Wed, 17 May 2023 13:08:07 +0000 Subject: [PATCH] Adjust the comment lines --- .../src/main/java/androidx/media3/extractor/DtsUtil.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/extractor/src/main/java/androidx/media3/extractor/DtsUtil.java b/libraries/extractor/src/main/java/androidx/media3/extractor/DtsUtil.java index b02ba440e3..19f870d84f 100644 --- a/libraries/extractor/src/main/java/androidx/media3/extractor/DtsUtil.java +++ b/libraries/extractor/src/main/java/androidx/media3/extractor/DtsUtil.java @@ -161,12 +161,12 @@ public final class DtsUtil { */ public static int parseDtsAudioSampleCount(ByteBuffer buffer) { if ((buffer.getInt(0) == SYNC_FTOC_LE) || (buffer.getInt(0) == SYNC_FTOC_NON_SYNC_LE)) { - // Check for DTS:X Profile 2 sync or non sync word and return - // 1024 if found. This is the only audio sample count that is used by DTS:X Streaming Encoder. + // Check for DTS:X Profile 2 sync or non sync word and return 1024 if found. This is the only + // audio sample count that is used by DTS:X Streaming Encoder. return 1024; } else if (buffer.getInt(0) == SYNC_EXT_SUB_LE) { - // Check for DTS Express sync word and return 4096 if found. This is the only audio - // sample count that is used by DTS Streaming Encoder. + // Check for DTS Express sync word and return 4096 if found. This is the only audio sample + // count that is used by DTS Streaming Encoder. return 4096; }