mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '5a969f64b9cf40bad923c73b66c3031b0018e848'
* commit '5a969f64b9cf40bad923c73b66c3031b0018e848': jack: Drop support for old (2012) JACK versions Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
6821b693ec
|
@ -2023,7 +2023,6 @@ SYSTEM_FUNCS="
|
|||
gmtime_r
|
||||
inet_aton
|
||||
isatty
|
||||
jack_port_get_latency_range
|
||||
kbhit
|
||||
LoadLibrary
|
||||
localtime_r
|
||||
|
@ -6231,10 +6230,8 @@ check_header soundcard.h
|
|||
enabled alsa && use_pkg_config alsa alsa "alsa/asoundlib.h" snd_pcm_htimestamp ||
|
||||
check_lib alsa alsa/asoundlib.h snd_pcm_htimestamp -lasound
|
||||
|
||||
if enabled libjack; then
|
||||
check_pkg_config libjack jack jack/jack.h jack_port_get_latency_range ||
|
||||
require_pkg_config libjack jack jack/jack.h jack_client_open
|
||||
fi
|
||||
enabled libjack &&
|
||||
require_pkg_config libjack jack jack/jack.h jack_port_get_latency_range
|
||||
|
||||
enabled sndio && check_lib sndio sndio.h sio_open -lsndio
|
||||
|
||||
|
|
|
@ -94,13 +94,9 @@ static int process_callback(jack_nframes_t nframes, void *arg)
|
|||
|
||||
/* Copy and interleave audio data from the JACK buffer into the packet */
|
||||
for (i = 0; i < self->nports; i++) {
|
||||
#if HAVE_JACK_PORT_GET_LATENCY_RANGE
|
||||
jack_latency_range_t range;
|
||||
jack_port_get_latency_range(self->ports[i], JackCaptureLatency, &range);
|
||||
latency += range.max;
|
||||
#else
|
||||
latency += jack_port_get_total_latency(self->client, self->ports[i]);
|
||||
#endif
|
||||
buffer = jack_port_get_buffer(self->ports[i], self->buffer_size);
|
||||
for (j = 0; j < self->buffer_size; j++)
|
||||
pkt_data[j * self->nports + i] = buffer[j];
|
||||
|
|
Loading…
Reference in New Issue