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/internal.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 |
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 |
AVInputFormat | ff_pulse_demuxer |
#define DEFAULT_CODEC_ID AV_NE(AV_CODEC_ID_PCM_S16BE, AV_CODEC_ID_PCM_S16LE) |
Definition at line 36 of file pulse_audio_dec.c.
Referenced by pulse_read_header(), and pulse_read_packet().
#define CHECK_SUCCESS_GOTO | ( | rerror, | |
expression, | |||
label | |||
) |
Definition at line 58 of file pulse_audio_dec.c.
Referenced by pulse_read_packet().
#define CHECK_DEAD_GOTO | ( | p, | |
rerror, | |||
label | |||
) |
Definition at line 66 of file pulse_audio_dec.c.
Referenced by pulse_read_packet().
Definition at line 343 of file pulse_audio_dec.c.
#define D AV_OPT_FLAG_DECODING_PARAM |
Definition at line 344 of file pulse_audio_dec.c.
Definition at line 75 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
Definition at line 87 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
Definition at line 99 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
Definition at line 105 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
|
static |
Definition at line 111 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
|
static |
Definition at line 138 of file pulse_audio_dec.c.
|
static |
Definition at line 268 of file pulse_audio_dec.c.
|
static |
Definition at line 337 of file pulse_audio_dec.c.
|
static |
Definition at line 346 of file pulse_audio_dec.c.
|
static |
Definition at line 358 of file pulse_audio_dec.c.
AVInputFormat ff_pulse_demuxer |
Definition at line 366 of file pulse_audio_dec.c.