FFmpeg
|
#include <pulse/rtclock.h>
#include <pulse/error.h>
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "libavutil/time.h"
#include "libavformat/avformat.h"
#include "libavformat/demux.h"
#include "libavformat/internal.h"
#include "libavformat/version.h"
#include "pulse_audio_common.h"
#include "timefilter.h"
Go to the source code of this file.
Data Structures | |
struct | PulseData |
Macros | |
#define | DEFAULT_CODEC_ID AV_NE(AV_CODEC_ID_PCM_S16BE, AV_CODEC_ID_PCM_S16LE) |
#define | CHECK_SUCCESS_GOTO(rerror, expression, label) |
#define | CHECK_DEAD_GOTO(p, rerror, label) |
#define | OFFSET(a) offsetof(PulseData, a) |
#define | D AV_OPT_FLAG_DECODING_PARAM |
#define | DEPR AV_OPT_FLAG_DEPRECATED |
Functions | |
static void | context_state_cb (pa_context *c, void *userdata) |
static void | stream_state_cb (pa_stream *s, void *userdata) |
static void | stream_request_cb (pa_stream *s, size_t length, void *userdata) |
static void | stream_latency_update_cb (pa_stream *s, void *userdata) |
static av_cold int | pulse_close (AVFormatContext *s) |
static av_cold int | pulse_read_header (AVFormatContext *s) |
static int | pulse_read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | pulse_get_device_list (AVFormatContext *h, AVDeviceInfoList *device_list) |
Variables | |
static const AVOption | options [] |
static const AVClass | pulse_demuxer_class |
const FFInputFormat | ff_pulse_demuxer |
#define DEFAULT_CODEC_ID AV_NE(AV_CODEC_ID_PCM_S16BE, AV_CODEC_ID_PCM_S16LE) |
Definition at line 38 of file pulse_audio_dec.c.
#define CHECK_SUCCESS_GOTO | ( | rerror, | |
expression, | |||
label | |||
) |
Definition at line 61 of file pulse_audio_dec.c.
#define CHECK_DEAD_GOTO | ( | p, | |
rerror, | |||
label | |||
) |
Definition at line 69 of file pulse_audio_dec.c.
Definition at line 373 of file pulse_audio_dec.c.
#define D AV_OPT_FLAG_DECODING_PARAM |
Definition at line 374 of file pulse_audio_dec.c.
#define DEPR AV_OPT_FLAG_DEPRECATED |
Definition at line 375 of file pulse_audio_dec.c.
|
static |
Definition at line 78 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
|
static |
Definition at line 90 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
|
static |
Definition at line 102 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
|
static |
Definition at line 108 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
|
static |
Definition at line 114 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
|
static |
Definition at line 141 of file pulse_audio_dec.c.
|
static |
Definition at line 289 of file pulse_audio_dec.c.
|
static |
Definition at line 367 of file pulse_audio_dec.c.
|
static |
Definition at line 377 of file pulse_audio_dec.c.
|
static |
Definition at line 389 of file pulse_audio_dec.c.
const FFInputFormat ff_pulse_demuxer |
Definition at line 397 of file pulse_audio_dec.c.