FFmpeg
Loading...
Searching...
No Matches
alsa_dec.c
Go to the documentation of this file.
1/*
2 * ALSA input and output
3 * Copyright (c) 2007 Luca Abeni ( lucabe72 email it )
4 * Copyright (c) 2007 Benoit Fouet ( benoit fouet free fr )
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23/**
24 * @file
25 * ALSA input and output: input
26 * @author Luca Abeni ( lucabe72 email it )
27 * @author Benoit Fouet ( benoit fouet free fr )
28 * @author Nicolas George ( nicolas george normalesup org )
29 *
30 * This avdevice decoder can capture audio from an ALSA (Advanced
31 * Linux Sound Architecture) device.
32 *
33 * The filename parameter is the name of an ALSA PCM device capable of
34 * capture, for example "default" or "plughw:1"; see the ALSA documentation
35 * for naming conventions. The empty string is equivalent to "default".
36 *
37 * The capture period is set to the lower value available for the device,
38 * which gives a low latency suitable for real-time capture.
39 *
40 * The PTS are an Unix time in microsecond.
41 *
42 * Due to a bug in the ALSA library
43 * (https://bugtrack.alsa-project.org/alsa-bug/view.php?id=4308), this
44 * decoder does not work with certain ALSA plugins, especially the dsnoop
45 * plugin.
46 */
47
48#include <alsa/asoundlib.h>
49
50#include "libavutil/internal.h"
52#include "libavutil/opt.h"
53#include "libavutil/time.h"
54
55#include "libavformat/demux.h"
57
58#include "avdevice.h"
59#include "alsa.h"
60
62{
63 AlsaData *s = s1->priv_data;
64 AVStream *st;
65 int ret;
67
68 st = avformat_new_stream(s1, NULL);
69 if (!st) {
70 av_log(s1, AV_LOG_ERROR, "Cannot add stream\n");
71
72 return AVERROR(ENOMEM);
73 }
75
76 ret = ff_alsa_open(s1, SND_PCM_STREAM_CAPTURE, &s->sample_rate, &s->ch_layout,
77 &codec_id);
78 if (ret < 0) {
79 return AVERROR(EIO);
80 }
81
82 /* take real parameters */
85 st->codecpar->sample_rate = s->sample_rate;
86 ret = av_channel_layout_copy(&st->codecpar->ch_layout, &s->ch_layout);
87 if (ret < 0)
88 goto fail;
89 st->codecpar->frame_size = s->frame_size;
90 avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
91 /* microseconds instead of seconds, MHz instead of Hz */
92 s->timefilter = ff_timefilter_new(1000000.0 / s->sample_rate,
93 s->period_size, 1.5E-6);
94 if (!s->timefilter) {
95 ret = AVERROR(EIO);
96 goto fail;
97 }
98
99 return 0;
100
101fail:
102 snd_pcm_close(s->h);
103 return ret;
104}
105
107{
108 AlsaData *s = s1->priv_data;
109 int res;
110 int64_t dts;
111 snd_pcm_sframes_t delay = 0;
112
113 if (!s->pkt->data) {
114 int ret = av_new_packet(s->pkt, s->period_size * s->frame_size);
115 if (ret < 0)
116 return ret;
117 s->pkt->size = 0;
118 }
119
120 do {
121 while ((res = snd_pcm_readi(s->h, s->pkt->data + s->pkt->size, s->period_size - s->pkt->size / s->frame_size)) < 0) {
122 if (res == -EAGAIN) {
123 return AVERROR(EAGAIN);
124 }
125 s->pkt->size = 0;
126 if (ff_alsa_xrun_recover(s1, res) < 0) {
127 av_log(s1, AV_LOG_ERROR, "ALSA read error: %s\n",
128 snd_strerror(res));
129 return AVERROR(EIO);
130 }
131 ff_timefilter_reset(s->timefilter);
132 }
133 s->pkt->size += res * s->frame_size;
134 } while (s->pkt->size < s->period_size * s->frame_size);
135
136 av_packet_move_ref(pkt, s->pkt);
137 dts = av_gettime();
138 snd_pcm_delay(s->h, &delay);
139 dts -= av_rescale(delay + res, 1000000, s->sample_rate);
140 pkt->pts = ff_timefilter_update(s->timefilter, dts, s->last_period);
141 s->last_period = res;
142
143 return 0;
144}
145
147{
148 return ff_alsa_get_device_list(device_list, SND_PCM_STREAM_CAPTURE);
149}
150
151static const AVOption options[] = {
152 { "sample_rate", "", offsetof(AlsaData, sample_rate), AV_OPT_TYPE_INT, {.i64 = 48000}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
153 { "ch_layout", "", offsetof(AlsaData, ch_layout), AV_OPT_TYPE_CHLAYOUT, {.str = NULL}, INT_MIN, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
154 { NULL },
155};
156
158 .class_name = "ALSA indev",
159 .item_name = av_default_item_name,
160 .option = options,
161 .version = LIBAVUTIL_VERSION_INT,
163};
164
166 .p.name = "alsa",
167 .p.long_name = NULL_IF_CONFIG_SMALL("ALSA audio input"),
168 .p.flags = AVFMT_NOFILE,
169 .p.priv_class = &alsa_demuxer_class,
170 .priv_data_size = sizeof(AlsaData),
174 .get_device_list = audio_get_device_list,
175};
FF_VISIBILITY_PUSH_HIDDEN const FFInputFormat ff_alsa_demuxer
Definition alsa_dec.c:165
int ff_alsa_xrun_recover(AVFormatContext *s1, int err)
Try to recover from ALSA buffer underrun.
Definition alsa.c:437
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.
Definition alsa.c:256
int ff_alsa_get_device_list(AVDeviceInfoList *device_list, snd_pcm_stream_t stream_type)
Definition alsa.c:477
av_cold int ff_alsa_close(AVFormatContext *s1)
Close the ALSA PCM.
Definition alsa.c:421
ALSA input and output: definitions and structures.
static av_cold int audio_read_header(AVFormatContext *s1)
Definition alsa_dec.c:61
static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
Definition alsa_dec.c:106
static const AVClass alsa_demuxer_class
Definition alsa_dec.c:157
static int audio_get_device_list(AVFormatContext *h, AVDeviceInfoList *device_list)
Definition alsa_dec.c:146
Main libavdevice API header.
void avpriv_set_pts_info(AVStream *st, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition avformat.c:834
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition avformat.h:488
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static AVPacket * pkt
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
#define fail
Definition test.h:479
#define AV_OPT_FLAG_DECODING_PARAM
A generic parameter which can be set by the user for demuxing or decoding.
Definition opt.h:355
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_CHLAYOUT
Underlying C type is AVChannelLayout.
Definition opt.h:330
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
Move every field in src to dst and reset src.
Definition packet.c:491
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition packet.c:98
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
#define av_cold
Definition attributes.h:117
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static av_cold int read_close(AVFormatContext *ctx)
Definition libcdio.c:143
@ AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT
Definition log.h:44
AVOptions.
Describe the class of an AVClass context structure.
Definition log.h:76
int frame_size
Audio frame size, if known.
Definition codec_par.h:227
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
List of devices.
Definition avdevice.h:343
Format I/O context.
Definition avformat.h:1333
enum AVCodecID audio_codec_id
Forced audio codec_id.
Definition avformat.h:1558
void * priv_data
Format private data.
Definition avformat.h:1361
AVOption.
Definition opt.h:428
This structure stores compressed data.
Definition packet.h:580
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
#define av_log(a,...)
int64_t av_gettime(void)
Get the current time in microseconds.
Definition time.c:40
double ff_timefilter_update(TimeFilter *self, double system_time, double period)
Update the filter.
Definition timefilter.c:76
void ff_timefilter_reset(TimeFilter *self)
Reset the filter.
Definition timefilter.c:71
TimeFilter * ff_timefilter_new(double time_base, double period, double bandwidth)
Create a new Delay Locked Loop time filter.
Definition timefilter.c:50
enum AVCodecID codec_id