]> git.sesse.net Git - vlc/commitdiff
audiotrack: fix typo
authorThomas Guillem <thomas@gllm.fr>
Tue, 10 Mar 2015 13:59:41 +0000 (13:59 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Tue, 10 Mar 2015 15:01:34 +0000 (16:01 +0100)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/audio_output/audiotrack.c

index b6865407ba5c94fba01111d2f3ede5b4013504bc..37eb507f244438f819716721538fd37a2efe20ad 100644 (file)
@@ -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 |