[vlc-commits] audiotrack: fix typo
Thomas Guillem
git at videolan.org
Tue Mar 10 16:18:39 CET 2015
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Mar 10 13:59:41 2015 +0000| [0289a4ce9b5d0be3cbf70e4a529aa25f59f5c51e] | committer: Jean-Baptiste Kempf
audiotrack: fix typo
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0289a4ce9b5d0be3cbf70e4a529aa25f59f5c51e
---
modules/audio_output/audiotrack.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/audio_output/audiotrack.c b/modules/audio_output/audiotrack.c
index b686540..37eb507 100644
--- a/modules/audio_output/audiotrack.c
+++ b/modules/audio_output/audiotrack.c
@@ -680,7 +680,7 @@ JNIThread_Configure( JNIEnv *env, audio_output_t *p_aout )
i_nb_channels = aout_FormatNbChannels( &fmt );
- /* Android AudioTrack support only mono, stereo, 5.1 and 7.1.
+ /* Android AudioTrack supports only mono, stereo, 5.1 and 7.1.
* Android will downmix to stereo if audio output doesn't handle 5.1 or 7.1
*/
if( i_nb_channels > 5 )
@@ -690,7 +690,7 @@ JNIThread_Configure( JNIEnv *env, audio_output_t *p_aout )
if( i_nb_channels > 7 && jfields.AudioFormat.has_CHANNEL_OUT_SIDE )
{
fmt.i_physical_channels = AOUT_CHANS_7_1;
- /* bitmak of CHANNEL_OUT_7POINT1 doesn't correspond to 5POINT1 and
+ /* bitmask of CHANNEL_OUT_7POINT1 doesn't correspond to 5POINT1 and
* SIDES */
i_channel_config = jfields.AudioFormat.CHANNEL_OUT_5POINT1 |
jfields.AudioFormat.CHANNEL_OUT_SIDE_LEFT |
More information about the vlc-commits
mailing list