40#include <alsa/asoundlib.h>
56 unsigned int sample_rate;
68 res =
ff_alsa_open(s1, SND_PCM_STREAM_PLAYBACK, &sample_rate,
72 "sample rate %d not available, nearest is %d\n",
90 const uint8_t *buf =
pkt->data;
92 size /=
s->frame_size;
94 s->timestamp =
pkt->dts;
95 s->timestamp +=
pkt->duration ?
pkt->duration :
size;
97 if (
s->reorder_func) {
98 if (
size >
s->reorder_buf_size)
101 s->reorder_func(buf,
s->reorder_buf,
size);
102 buf =
s->reorder_buf;
104 while ((res = snd_pcm_writei(
s->h, buf,
size)) < 0) {
105 if (res == -EAGAIN) {
132 pkt.data = (*frame)->data[0];
133 pkt.size = (*frame)->nb_samples *
s->frame_size;
134 pkt.dts = (*frame)->pkt_dts;
135 pkt.duration = (*frame)->duration;
144 snd_pcm_sframes_t delay = 0;
146 snd_pcm_delay(
s->h, &delay);
147 *dts =
s->timestamp - delay;
156 .class_name =
"ALSA outdev",
const FFOutputFormat ff_alsa_muxer
int ff_alsa_xrun_recover(AVFormatContext *s1, int err)
Try to recover from ALSA buffer underrun.
av_cold int ff_alsa_open(AVFormatContext *ctx, snd_pcm_stream_t mode, unsigned int *sample_rate, AVChannelLayout *layout, enum AVCodecID *codec_id)
Open an ALSA PCM.
int ff_alsa_get_device_list(AVDeviceInfoList *device_list, snd_pcm_stream_t stream_type)
int ff_alsa_extend_reorder_buf(AlsaData *s, int min_size)
av_cold int ff_alsa_close(AVFormatContext *s1)
Close the ALSA PCM.
ALSA input and output: definitions and structures.
static int audio_get_device_list(AVFormatContext *h, AVDeviceInfoList *device_list)
static av_cold int audio_write_header(AVFormatContext *s1)
static void audio_get_output_timestamp(AVFormatContext *s1, int stream, int64_t *dts, int64_t *wall)
static const AVClass alsa_muxer_class
static int audio_write_packet(AVFormatContext *s1, AVPacket *pkt)
static int audio_write_frame(AVFormatContext *s1, int stream_index, AVFrame **frame, unsigned flags)
static int audio_get_device_list(AVFormatContext *h, AVDeviceInfoList *device_list)
Main libavdevice API header.
#define flags(name, subs,...)
reference-counted frame API
AVCodecID
Identify the syntax and semantics of the bitstream.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
const char * av_default_item_name(void *ptr)
Return the context name.
int av_sample_fmt_is_planar(enum AVSampleFormat sample_fmt)
Check if the sample format is planar.
#define AV_NOPTS_VALUE
Undefined timestamp value.
#define LIBAVUTIL_VERSION_INT
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
@ AV_CLASS_CATEGORY_DEVICE_AUDIO_OUTPUT
@ AV_WRITE_UNCODED_FRAME_QUERY
Query whether the feature is possible on this stream.
Describe the class of an AVClass context structure.
AVChannelLayout ch_layout
The channel layout and number of channels.
enum AVMediaType codec_type
General type of the encoded data.
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
int sample_rate
The number of audio samples per second.
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
void * priv_data
Format private data.
AVStream ** streams
A list of all streams in the file.
This structure describes decoded (raw) audio or video data.
This structure stores compressed data.
AVCodecParameters * codecpar
Codec parameters associated with this stream.
int64_t av_gettime(void)
Get the current time in microseconds.