MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / stop_jack

Function stop_jack

libavdevice/jack_audio.c:208–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206}
207
208static void stop_jack(JackData *self)
209{
210 if (self->client) {
211 if (self->activated)
212 jack_deactivate(self->client);
213 jack_client_close(self->client);
214 }
215 sem_destroy(&self->packet_count);
216 free_pkt_fifo(self->new_pkts);
217 free_pkt_fifo(self->filled_pkts);
218 av_freep(&self->ports);
219 ff_timefilter_destroy(self->timefilter);
220}
221
222static int audio_read_header(AVFormatContext *context, AVFormatParameters *params)
223{

Callers 2

audio_read_headerFunction · 0.85
audio_read_closeFunction · 0.85

Calls 3

free_pkt_fifoFunction · 0.85
av_freepFunction · 0.85
ff_timefilter_destroyFunction · 0.85

Tested by

no test coverage detected