mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix disallowed tag.
If ChannelMixingMatrix is public, this causes code to not build. PiperOrigin-RevId: 511500694
This commit is contained in:
parent
bede06546d
commit
2baa70206c
1 changed files with 8 additions and 12 deletions
|
|
@ -27,20 +27,16 @@ import static androidx.media3.common.util.Assertions.checkArgument;
|
||||||
*
|
*
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>Stereo to mono with each channel at half volume:
|
* <li>Stereo to mono with each channel at half volume:
|
||||||
* <pre>[0.5 0.5]
|
* <pre>
|
||||||
* <li>
|
* [0.5 0.5]</pre>
|
||||||
* <li>Stereo to stereo with no mixing or scaling:
|
* <li>Stereo to stereo with no mixing or scaling:
|
||||||
* <pre>
|
* <pre>
|
||||||
* [1 0
|
* [1 0
|
||||||
* 0 1]
|
* 0 1]</pre>
|
||||||
* </pre>
|
|
||||||
* </li>
|
|
||||||
* <li>Stereo to stereo with 0.7 volume:
|
* <li>Stereo to stereo with 0.7 volume:
|
||||||
* <pre>
|
* <pre>
|
||||||
* [0.7 0
|
* [0.7 0
|
||||||
* 0 0.7]
|
* 0 0.7]</pre>
|
||||||
* </pre>
|
|
||||||
* </li>
|
|
||||||
* </ul>
|
* </ul>
|
||||||
*/
|
*/
|
||||||
/* package */ final class ChannelMixingMatrix {
|
/* package */ final class ChannelMixingMatrix {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue