#include <alsa/asoundlib.h>
#include "libavformat/avformat.h"
#include "alsa-audio.h"
Go to the source code of this file.
Functions | |
static av_cold int | audio_read_header (AVFormatContext *s1, AVFormatParameters *ap) |
static int | audio_read_packet (AVFormatContext *s1, AVPacket *pkt) |
Variables | |
AVInputFormat | alsa_demuxer |
This avdevice decoder allows to capture audio from an ALSA (Advanced Linux Sound Architecture) device.
The filename parameter is the name of an ALSA PCM device capable of capture, for example "default" or "plughw:1"; see the ALSA documentation for naming conventions. The empty string is equivalent to "default".
The capture period is set to the lower value available for the device, which gives a low latency suitable for real-time capture.
The PTS are an Unix time in microsecond.
Due to a bug in the ALSA library (https://bugtrack.alsa-project.org/alsa-bug/view.php?id=4308), this decoder does not work with certain ALSA plugins, especially the dsnoop plugin.
Definition in file alsa-audio-dec.c.
static av_cold int audio_read_header | ( | AVFormatContext * | s1, | |
AVFormatParameters * | ap | |||
) | [static] |
Definition at line 53 of file alsa-audio-dec.c.
static int audio_read_packet | ( | AVFormatContext * | s1, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 127 of file alsa-audio-dec.c.
Initial value:
{ "alsa", NULL_IF_CONFIG_SMALL("ALSA audio input"), sizeof(AlsaData), NULL, audio_read_header, audio_read_packet, ff_alsa_close, .flags = AVFMT_NOFILE, }
Definition at line 166 of file alsa-audio-dec.c.