X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faudio_output%2Fjack.c;h=f87d4cbe011ed09390e4c97b8a011f6f949f0106;hb=fa61862474c332412e0341d98f1cf82c067d277a;hp=c5d87122a1f27014f33879c2dddb4e6b2b72dff8;hpb=df61d33b06e2b3cbbe746b2f5a9bea5b370c24ff;p=vlc diff --git a/modules/audio_output/jack.c b/modules/audio_output/jack.c index c5d87122a1..f87d4cbe01 100644 --- a/modules/audio_output/jack.c +++ b/modules/audio_output/jack.c @@ -34,7 +34,8 @@ # include "config.h" #endif -#include +#include +#include #include #include @@ -80,7 +81,7 @@ static int Process ( jack_nframes_t i_frames, void *p_arg ); *****************************************************************************/ vlc_module_begin(); set_shortname( "JACK" ); - set_description( _("JACK audio output") ); + set_description( N_("JACK audio output") ); set_capability( "audio output", 100 ); set_category( CAT_AUDIO ); set_subcategory( SUBCAT_AUDIO_AOUT ); @@ -107,7 +108,6 @@ static int Open( vlc_object_t *p_this ) p_sys = calloc( 1, sizeof( aout_sys_t ) ); if( p_sys == NULL ) { - msg_Err( p_aout, "out of memory" ); status = VLC_ENOMEM; goto error_out; } @@ -142,7 +142,6 @@ static int Open( vlc_object_t *p_this ) sizeof(jack_port_t *) ); if( p_sys->p_jack_ports == NULL ) { - msg_Err( p_aout, "out of memory" ); status = VLC_ENOMEM; goto error_out; } @@ -151,7 +150,6 @@ static int Open( vlc_object_t *p_this ) sizeof(jack_sample_t *) ); if( p_sys->p_jack_buffers == NULL ) { - msg_Err( p_aout, "out of memory" ); status = VLC_ENOMEM; goto error_out; } @@ -189,6 +187,7 @@ static int Open( vlc_object_t *p_this ) const char **pp_in_ports = jack_get_ports( p_sys->p_jack_client, psz_regex, NULL, JackPortIsInput ); + free( psz_regex ); /* Count the number of returned ports */ i_in_ports = 0; while( pp_in_ports && pp_in_ports[i_in_ports] )