Commit 83c7434f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Jack: do not use deprecated functions

Especially, when it is deprecated since a very long time.
parent c16e00c8
......@@ -157,7 +157,7 @@ static int Open( vlc_object_t *p_this )
/* define name and connect to jack server */
char p_vlc_client_name[32];
sprintf( p_vlc_client_name, "vlc-input-%d", getpid() );
p_sys->p_jack_client = jack_client_new( p_vlc_client_name );
p_sys->p_jack_client = jack_client_open( p_vlc_client_name, JackNullOption, NULL );
if( p_sys->p_jack_client == NULL )
{
msg_Err( p_demux, "failed to connect to JACK server" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment