1 /*****************************************************************************
2 * jack : JACK audio output module
3 *****************************************************************************
4 * Copyright (C) 2006 the VideoLAN team
7 * Authors: Cyril Deguet <asmax _at_ videolan.org>
8 * Jon Griffiths <jon_p_griffiths _At_ yahoo _DOT_ com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 * \file modules/audio_output/jack.c
26 * \brief JACK audio output functions
28 /*****************************************************************************
30 *****************************************************************************/
31 #include <unistd.h> /* write(), close() */
37 #include <vlc_common.h>
38 #include <vlc_plugin.h>
41 #include <jack/jack.h>
43 typedef jack_default_audio_sample_t jack_sample_t
;
45 /*****************************************************************************
46 * aout_sys_t: JACK audio output method descriptor
47 *****************************************************************************
48 * This structure is part of the audio output thread descriptor.
49 * It describes some JACK specific variables.
50 *****************************************************************************/
53 jack_client_t
*p_jack_client
;
54 jack_port_t
**p_jack_ports
;
55 jack_sample_t
**p_jack_buffers
;
56 unsigned int i_channels
;
57 jack_nframes_t latency
;
60 /*****************************************************************************
62 *****************************************************************************/
63 static int Open ( vlc_object_t
* );
64 static void Close ( vlc_object_t
* );
65 static void Play ( aout_instance_t
* );
66 static int Process ( jack_nframes_t i_frames
, void *p_arg
);
67 static int GraphChange ( void *p_arg
);
69 #define AUTO_CONNECT_OPTION "jack-auto-connect"
70 #define AUTO_CONNECT_TEXT N_("Automatically connect to writable clients")
71 #define AUTO_CONNECT_LONGTEXT N_( \
72 "If enabled, this option will automatically connect sound output to the " \
73 "first writable JACK clients found." )
75 #define CONNECT_REGEX_OPTION "jack-connect-regex"
76 #define CONNECT_REGEX_TEXT N_("Connect to clients matching")
77 #define CONNECT_REGEX_LONGTEXT N_( \
78 "If automatic connection is enabled, only JACK clients whose names " \
79 "match this regular expression will be considered for connection." )
81 /*****************************************************************************
83 *****************************************************************************/
85 set_shortname( "JACK" )
86 set_description( N_("JACK audio output") )
87 set_capability( "audio output", 100 )
88 set_category( CAT_AUDIO
)
89 set_subcategory( SUBCAT_AUDIO_AOUT
)
90 add_bool( AUTO_CONNECT_OPTION
, false, NULL
, AUTO_CONNECT_TEXT
,
91 AUTO_CONNECT_LONGTEXT
, true )
92 add_string( CONNECT_REGEX_OPTION
, NULL
, NULL
, CONNECT_REGEX_TEXT
,
93 CONNECT_REGEX_LONGTEXT
, true )
94 set_callbacks( Open
, Close
)
97 /*****************************************************************************
98 * Open: create a JACK client
99 *****************************************************************************/
100 static int Open( vlc_object_t
*p_this
)
103 aout_instance_t
*p_aout
= (aout_instance_t
*)p_this
;
104 struct aout_sys_t
*p_sys
= NULL
;
105 int status
= VLC_SUCCESS
;
109 /* Allocate structure */
110 p_sys
= calloc( 1, sizeof( aout_sys_t
) );
116 p_aout
->output
.p_sys
= p_sys
;
119 /* Connect to the JACK server */
120 snprintf( psz_name
, sizeof(psz_name
), "vlc_%d", getpid());
121 psz_name
[sizeof(psz_name
) - 1] = '\0';
122 p_sys
->p_jack_client
= jack_client_open( psz_name
,
123 JackNullOption
| JackNoStartServer
,
125 if( p_sys
->p_jack_client
== NULL
)
127 msg_Err( p_aout
, "failed to connect to JACK server" );
128 status
= VLC_EGENERIC
;
132 /* Set the process callback */
133 jack_set_process_callback( p_sys
->p_jack_client
, Process
, p_aout
);
134 jack_set_graph_order_callback ( p_sys
->p_jack_client
, GraphChange
, p_aout
);
136 p_aout
->output
.pf_play
= Play
;
137 aout_VolumeSoftInit( p_aout
);
139 /* JACK only supports fl32 format */
140 p_aout
->output
.output
.i_format
= VLC_CODEC_FL32
;
141 // TODO add buffer size callback
142 p_aout
->output
.i_nb_samples
= jack_get_buffer_size( p_sys
->p_jack_client
);
143 p_aout
->output
.output
.i_rate
= jack_get_sample_rate( p_sys
->p_jack_client
);
145 p_sys
->i_channels
= aout_FormatNbChannels( &p_aout
->output
.output
);
147 p_sys
->p_jack_ports
= malloc( p_sys
->i_channels
*
148 sizeof(jack_port_t
*) );
149 if( p_sys
->p_jack_ports
== NULL
)
155 p_sys
->p_jack_buffers
= malloc( p_sys
->i_channels
*
156 sizeof(jack_sample_t
*) );
157 if( p_sys
->p_jack_buffers
== NULL
)
163 /* Create the output ports */
164 for( i
= 0; i
< p_sys
->i_channels
; i
++ )
166 snprintf( psz_name
, sizeof(psz_name
), "out_%d", i
+ 1);
167 psz_name
[sizeof(psz_name
) - 1] = '\0';
168 p_sys
->p_jack_ports
[i
] = jack_port_register( p_sys
->p_jack_client
,
169 psz_name
, JACK_DEFAULT_AUDIO_TYPE
, JackPortIsOutput
, 0 );
171 if( p_sys
->p_jack_ports
[i
] == NULL
)
173 msg_Err( p_aout
, "failed to register a JACK port" );
174 status
= VLC_EGENERIC
;
179 /* Tell the JACK server we are ready */
180 i_error
= jack_activate( p_sys
->p_jack_client
);
183 msg_Err( p_aout
, "failed to activate JACK client (error %d)", i_error
);
184 status
= VLC_EGENERIC
;
188 /* Auto connect ports if we were asked to */
189 if( var_InheritBool( p_aout
, AUTO_CONNECT_OPTION
) )
191 unsigned int i_in_ports
;
192 char *psz_regex
= var_InheritString( p_aout
, CONNECT_REGEX_OPTION
);
193 const char **pp_in_ports
= jack_get_ports( p_sys
->p_jack_client
,
197 /* Count the number of returned ports */
199 while( pp_in_ports
&& pp_in_ports
[i_in_ports
] )
204 /* Tie the output ports to JACK input ports */
205 for( i
= 0; i_in_ports
> 0 && i
< p_sys
->i_channels
; i
++ )
207 const char* psz_in
= pp_in_ports
[i
% i_in_ports
];
208 const char* psz_out
= jack_port_name( p_sys
->p_jack_ports
[i
] );
210 i_error
= jack_connect( p_sys
->p_jack_client
, psz_out
, psz_in
);
213 msg_Err( p_aout
, "failed to connect port %s to port %s (error %d)",
214 psz_out
, psz_in
, i_error
);
218 msg_Dbg( p_aout
, "connecting port %s to port %s",
225 msg_Dbg( p_aout
, "JACK audio output initialized (%d channels, buffer "
226 "size=%d, rate=%d)", p_sys
->i_channels
,
227 p_aout
->output
.i_nb_samples
, p_aout
->output
.output
.i_rate
);
230 /* Clean up, if an error occurred */
231 if( status
!= VLC_SUCCESS
&& p_sys
!= NULL
)
233 if( p_sys
->p_jack_client
)
235 jack_deactivate( p_sys
->p_jack_client
);
236 jack_client_close( p_sys
->p_jack_client
);
238 free( p_sys
->p_jack_ports
);
239 free( p_sys
->p_jack_buffers
);
246 /*****************************************************************************
247 * Process: callback for JACK
248 *****************************************************************************/
249 int Process( jack_nframes_t i_frames
, void *p_arg
)
251 unsigned int i
, j
, i_nb_samples
= 0;
252 aout_instance_t
*p_aout
= (aout_instance_t
*) p_arg
;
253 struct aout_sys_t
*p_sys
= p_aout
->output
.p_sys
;
254 jack_sample_t
*p_src
= NULL
;
256 jack_nframes_t dframes
= p_sys
->latency
257 - jack_frames_since_cycle_start( p_sys
->p_jack_client
);
259 jack_time_t dtime
= dframes
* 1000 * 1000 / jack_get_sample_rate( p_sys
->p_jack_client
);
260 mtime_t play_date
= mdate() + (mtime_t
) ( dtime
);
262 /* Get the next audio data buffer */
263 aout_buffer_t
*p_buffer
= aout_OutputNextBuffer( p_aout
, play_date
, false );
265 if( p_buffer
!= NULL
)
267 p_src
= (jack_sample_t
*)p_buffer
->p_buffer
;
268 i_nb_samples
= p_buffer
->i_nb_samples
;
271 /* Get the JACK buffers to write to */
272 for( i
= 0; i
< p_sys
->i_channels
; i
++ )
274 p_sys
->p_jack_buffers
[i
] = jack_port_get_buffer( p_sys
->p_jack_ports
[i
],
278 /* Copy in the audio data */
279 for( j
= 0; j
< i_nb_samples
; j
++ )
281 for( i
= 0; i
< p_sys
->i_channels
; i
++ )
283 jack_sample_t
*p_dst
= p_sys
->p_jack_buffers
[i
];
289 /* Fill any remaining buffer with silence */
290 if( i_nb_samples
< i_frames
)
292 for( i
= 0; i
< p_sys
->i_channels
; i
++ )
294 memset( p_sys
->p_jack_buffers
[i
] + i_nb_samples
, 0,
295 sizeof( jack_sample_t
) * (i_frames
- i_nb_samples
) );
301 aout_BufferFree( p_buffer
);
306 /*****************************************************************************
307 * GraphChange: callback when JACK reorders it's process graph.
308 We update latency information.
309 *****************************************************************************/
311 static int GraphChange( void *p_arg
)
313 aout_instance_t
*p_aout
= (aout_instance_t
*) p_arg
;
314 struct aout_sys_t
*p_sys
= p_aout
->output
.p_sys
;
316 jack_nframes_t port_latency
;
320 for( i
= 0; i
< p_sys
->i_channels
; ++i
)
322 port_latency
= jack_port_get_total_latency( p_sys
->p_jack_client
,
323 p_sys
->p_jack_ports
[i
] );
324 p_sys
->latency
= __MAX( p_sys
->latency
, port_latency
);
327 msg_Dbg(p_aout
, "JACK graph reordered. Our maximum latency=%d.", p_sys
->latency
);
332 /*****************************************************************************
333 * Play: nothing to do
334 *****************************************************************************/
335 static void Play( aout_instance_t
*p_aout
)
337 VLC_UNUSED( p_aout
);
340 /*****************************************************************************
341 * Close: close the JACK client
342 *****************************************************************************/
343 static void Close( vlc_object_t
*p_this
)
346 aout_instance_t
*p_aout
= (aout_instance_t
*)p_this
;
347 struct aout_sys_t
*p_sys
= p_aout
->output
.p_sys
;
349 i_error
= jack_deactivate( p_sys
->p_jack_client
);
352 msg_Err( p_aout
, "jack_deactivate failed (error %d)", i_error
);
355 i_error
= jack_client_close( p_sys
->p_jack_client
);
358 msg_Err( p_aout
, "jack_client_close failed (error %d)", i_error
);
360 free( p_sys
->p_jack_ports
);
361 free( p_sys
->p_jack_buffers
);