|
FFmpeg
|
#include <pulse/rtclock.h>#include <pulse/error.h>#include "libavformat/avformat.h"#include "libavformat/internal.h"#include "libavutil/opt.h"#include "libavutil/time.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 33 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 55 of file pulse_audio_dec.c.
Referenced by pulse_read_packet().
| #define CHECK_DEAD_GOTO | ( | p, | |
| rerror, | |||
| label | |||
| ) |
Definition at line 63 of file pulse_audio_dec.c.
Referenced by pulse_read_packet().
Definition at line 340 of file pulse_audio_dec.c.
| #define D AV_OPT_FLAG_DECODING_PARAM |
Definition at line 341 of file pulse_audio_dec.c.
Definition at line 72 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
Definition at line 84 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
Definition at line 96 of file pulse_audio_dec.c.
Referenced by pulse_read_header().
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 135 of file pulse_audio_dec.c.
|
static |
Definition at line 265 of file pulse_audio_dec.c.
|
static |
Definition at line 334 of file pulse_audio_dec.c.
|
static |
Definition at line 343 of file pulse_audio_dec.c.
|
static |
Definition at line 355 of file pulse_audio_dec.c.
| AVInputFormat ff_pulse_demuxer |
Definition at line 363 of file pulse_audio_dec.c.
1.8.2