FFmpeg
|
#include "config.h"
#include <semaphore.h>
#include <jack/jack.h>
#include "libavutil/internal.h"
#include "libavutil/log.h"
#include "libavutil/fifo.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/time.h"
#include "libavformat/avformat.h"
#include "libavformat/demux.h"
#include "libavformat/internal.h"
#include "timefilter.h"
#include "avdevice.h"
Go to the source code of this file.
Data Structures | |
struct | JackData |
Macros | |
#define | FIFO_PACKETS_NUM 16 |
Size of the internal FIFO buffers as a number of audio packets. More... | |
#define | OFFSET(x) offsetof(JackData, x) |
Functions | |
static int | process_callback (jack_nframes_t nframes, void *arg) |
static void | shutdown_callback (void *arg) |
static int | xrun_callback (void *arg) |
static int | supply_new_packets (JackData *self, AVFormatContext *context) |
static int | start_jack (AVFormatContext *context) |
static void | free_pkt_fifo (AVFifo **fifop) |
static void | stop_jack (JackData *self) |
static int | audio_read_header (AVFormatContext *context) |
static int | audio_read_packet (AVFormatContext *context, AVPacket *pkt) |
static int | audio_read_close (AVFormatContext *context) |
Variables | |
static const AVOption | options [] |
static const AVClass | jack_indev_class |
const FFInputFormat | ff_jack_demuxer |
#define FIFO_PACKETS_NUM 16 |
|
static |
Definition at line 60 of file jack.c.
Referenced by start_jack().
|
static |
Definition at line 117 of file jack.c.
Referenced by start_jack().
|
static |
Definition at line 123 of file jack.c.
Referenced by start_jack().
|
static |
Definition at line 131 of file jack.c.
Referenced by audio_read_packet(), and start_jack().
|
static |
Definition at line 149 of file jack.c.
Referenced by audio_read_header().
|
static |
Definition at line 214 of file jack.c.
Referenced by stop_jack().
|
static |
Definition at line 223 of file jack.c.
Referenced by audio_read_close(), and audio_read_header().
|
static |
|
static |
|
static |
|
static |
|
static |
const FFInputFormat ff_jack_demuxer |