]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/auhal.c
i420_yuy2_mmx: fixed a bug introduced in [21423] (don't apply if you like colorful...
[vlc] / modules / audio_output / auhal.c
index 4e14bde61edf521f2dbce9dc6919119e19900976..1da7f5d015d7a1f77683d799d3c18f29cc92aab7 100644 (file)
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <string.h>
-#include <stdlib.h>
 #include <unistd.h>
 
 #include <vlc/vlc.h>
-#include <vlc/aout.h>
-#include <vlc_interaction.h>
-
-#include "aout_internal.h"
+#include <vlc_interface.h>
+#include <vlc_aout.h>
 
 #include <CoreAudio/CoreAudio.h>
 #include <AudioUnit/AudioUnitProperties.h>
@@ -1217,7 +1213,7 @@ static int AudioStreamChangeFormat( aout_instance_t *p_aout, AudioStreamID i_str
     }
 
     /* The AudioStreamSetProperty is not only asynchronious (requiring the locks)
-     * it is also not Atomic, in it's behaviour.
+     * it is also not atomic in its behaviour.
      * Therefore we check 5 times before we really give up.
      * FIXME: failing isn't actually implemented yet. */
     for( i = 0; i < 5; i++ )