Modify the comment lines

This commit is contained in:
Tianyi Feng 2023-10-12 09:54:25 +00:00
parent 834b61d1b7
commit 492048c00b

View File

@ -64,8 +64,7 @@ public class DefaultAudioTrackBufferSizeProvider
private static final int AC3_BUFFER_MULTIPLICATION_FACTOR = 2; private static final int AC3_BUFFER_MULTIPLICATION_FACTOR = 2;
/** /**
* Default multiplication factor to apply to DTS Express passthrough buffer to avoid underruns on * Default multiplication factor to apply to DTS Express passthrough buffer to avoid underruns.
* some devices (e.g., Xiaomi A2 TV).
*/ */
private static final int DTSHD_BUFFER_MULTIPLICATION_FACTOR = 4; private static final int DTSHD_BUFFER_MULTIPLICATION_FACTOR = 4;
@ -153,8 +152,7 @@ public class DefaultAudioTrackBufferSizeProvider
/** /**
* Sets the multiplication factor to apply to the passthrough buffer for DTS-HD (DTS Express) to * Sets the multiplication factor to apply to the passthrough buffer for DTS-HD (DTS Express) to
* avoid underruns on some devices (e.g., Xiaomi A2 TV). Default is {@link * avoid underruns. Default is {@link #DTSHD_BUFFER_MULTIPLICATION_FACTOR}.
* #DTSHD_BUFFER_MULTIPLICATION_FACTOR}.
*/ */
@CanIgnoreReturnValue @CanIgnoreReturnValue
public Builder setDtshdBufferMultiplicationFactor(int dtshdBufferMultiplicationFactor) { public Builder setDtshdBufferMultiplicationFactor(int dtshdBufferMultiplicationFactor) {
@ -191,7 +189,7 @@ public class DefaultAudioTrackBufferSizeProvider
/** /**
* The multiplication factor to apply to DTS-HD (DTS Express) passthrough buffer to avoid * The multiplication factor to apply to DTS-HD (DTS Express) passthrough buffer to avoid
* underruns on some devices (e.g., Xiaomi A2 TV). * underruns.
*/ */
public final int dtshdBufferMultiplicationFactor; public final int dtshdBufferMultiplicationFactor;