]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/hd1000a.cpp
playlist/item.c: Better subitem added handling code.
[vlc] / modules / audio_output / hd1000a.cpp
index 7a44d035cc06913497fa513cb3c5e79d7cb2667b..4583cff70acbb7fdb1d506d8356aefc69a00a783 100644 (file)
@@ -31,7 +31,7 @@ extern "C"
 #include <errno.h>
 
 #include <vlc/vlc.h>
-#include <vlc/aout.h>
+#include <vlc_aout.h>
 
 #include "aout_internal.h"
 }
@@ -73,7 +73,7 @@ static void    InterleaveS16( int16_t *, int16_t * );
  *****************************************************************************/
 vlc_module_begin();
     set_shortname( "Roku HD1000" );
-    set_description( N_("Roku HD1000 audio output") );
+    set_description( _("Roku HD1000 audio output") );
     set_capability( "audio output", 100 );
     set_category( CAT_AUDIO );
     set_subcategory( SUBCAT_AUDIO_AOUT );
@@ -192,7 +192,7 @@ static void Close( vlc_object_t * p_this )
     aout_instance_t * p_aout = (aout_instance_t *)p_this;
     struct aout_sys_t * p_sys = p_aout->output.p_sys;
 
-    p_aout->b_die = VLC_TRUE;
+    vlc_object_kill( p_aout );
     vlc_thread_join( p_aout );
     p_aout->b_die = VLC_FALSE;