]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/portaudio.c
Cosmetic fix (excessive indentation)
[vlc] / modules / audio_output / portaudio.c
index fd8e192f252c98c99046b84b1e745e8af0008f0e..4c3cb39d4407a820a9c28e925eb2e34dbb982603 100644 (file)
@@ -11,7 +11,7 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <string.h>
-#include <stdlib.h>
 
 #include <vlc/vlc.h>
-#include <vlc/aout.h>
-#include <portaudio.h>
+#include <vlc_aout.h>
 
-#include "aout_internal.h"
+
+#include <portaudio.h>
 
 #define FRAME_SIZE 1024              /* The size is in samples, not in bytes */
 
@@ -109,7 +107,7 @@ static int PAOpenStream( aout_instance_t * );
 
 vlc_module_begin();
     set_shortname( "PortAudio" );
-    set_shortname( _("PORTAUDIO audio output") );
+    set_description( _("PORTAUDIO audio output") );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AOUT );
     add_integer( "portaudio-device", 0, NULL,