Commit 7f3eb113 by samrobinson Committed by Andrew Lewis

Fix disallowed tag.

If ChannelMixingMatrix is public, this causes code to not build.

PiperOrigin-RevId: 511500694
parent 379c3e1e
......@@ -27,20 +27,16 @@ import static com.google.android.exoplayer2.util.Assertions.checkArgument;
*
* <ul>
* <li>Stereo to mono with each channel at half volume:
* <pre>[0.5 0.5]
* <li>
* <pre>
* [0.5 0.5]</pre>
* <li>Stereo to stereo with no mixing or scaling:
* <pre>
* [1 0
* 0 1]
* </pre>
* </li>
* <pre>
* [1 0
* 0 1]</pre>
* <li>Stereo to stereo with 0.7 volume:
* <pre>
* [0.7 0
* 0 0.7]
* </pre>
* </li>
* <pre>
* [0.7 0
* 0 0.7]</pre>
* </ul>
*/
/* package */ final class ChannelMixingMatrix {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment