]> git.sesse.net Git - ffmpeg/blob - libavdevice/alsa-audio-dec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavdevice / alsa-audio-dec.c
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 allows to 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 #include "libavutil/opt.h"
50 #include "libavutil/mathematics.h"
51
52 #include "avdevice.h"
53 #include "alsa-audio.h"
54
55 static av_cold int audio_read_header(AVFormatContext *s1,
56                                      AVFormatParameters *ap)
57 {
58     AlsaData *s = s1->priv_data;
59     AVStream *st;
60     int ret;
61     enum CodecID codec_id;
62     snd_pcm_sw_params_t *sw_params;
63     double o;
64
65 #if FF_API_FORMAT_PARAMETERS
66     if (ap->sample_rate > 0)
67         s->sample_rate = ap->sample_rate;
68
69     if (ap->channels > 0)
70         s->channels = ap->channels;
71 #endif
72
73     st = av_new_stream(s1, 0);
74     if (!st) {
75         av_log(s1, AV_LOG_ERROR, "Cannot add stream\n");
76
77         return AVERROR(ENOMEM);
78     }
79     codec_id    = s1->audio_codec_id;
80
81     ret = ff_alsa_open(s1, SND_PCM_STREAM_CAPTURE, &s->sample_rate, s->channels,
82         &codec_id);
83     if (ret < 0) {
84         return AVERROR(EIO);
85     }
86
87     /* take real parameters */
88     st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
89     st->codec->codec_id    = codec_id;
90     st->codec->sample_rate = s->sample_rate;
91     st->codec->channels    = s->channels;
92     av_set_pts_info(st, 64, 1, 1000000);  /* 64 bits pts in us */
93     o = 2 * M_PI * s->period_size / s->sample_rate * 1.5; // bandwidth: 1.5Hz
94     s->timefilter = ff_timefilter_new(1000000.0 / s->sample_rate,
95                                       sqrt(2 * o), o * o);
96     if (!s->timefilter)
97         goto fail;
98
99     return 0;
100
101 fail:
102     snd_pcm_close(s->h);
103     return AVERROR(EIO);
104 }
105
106 static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
107 {
108     AlsaData *s  = s1->priv_data;
109     AVStream *st = s1->streams[0];
110     int res;
111     int64_t dts;
112     snd_pcm_sframes_t delay = 0;
113
114     if (av_new_packet(pkt, s->period_size * s->frame_size) < 0) {
115         return AVERROR(EIO);
116     }
117
118     while ((res = snd_pcm_readi(s->h, pkt->data, s->period_size)) < 0) {
119         if (res == -EAGAIN) {
120             av_free_packet(pkt);
121
122             return AVERROR(EAGAIN);
123         }
124         if (ff_alsa_xrun_recover(s1, res) < 0) {
125             av_log(s1, AV_LOG_ERROR, "ALSA read error: %s\n",
126                    snd_strerror(res));
127             av_free_packet(pkt);
128
129             return AVERROR(EIO);
130         }
131         ff_timefilter_reset(s->timefilter);
132     }
133
134     dts = av_gettime();
135     snd_pcm_delay(s->h, &delay);
136     dts -= av_rescale(delay + res, 1000000, s->sample_rate);
137     pkt->pts = ff_timefilter_update(s->timefilter, dts, res);
138
139     pkt->size = res * s->frame_size;
140
141     return 0;
142 }
143
144 static const AVOption options[] = {
145     { "sample_rate", "", offsetof(AlsaData, sample_rate), FF_OPT_TYPE_INT, {.dbl = 48000}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
146     { "channels",    "", offsetof(AlsaData, channels),    FF_OPT_TYPE_INT, {.dbl = 2},     1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
147     { NULL },
148 };
149
150 static const AVClass alsa_demuxer_class = {
151     .class_name     = "ALSA demuxer",
152     .item_name      = av_default_item_name,
153     .option         = options,
154     .version        = LIBAVUTIL_VERSION_INT,
155 };
156
157 AVInputFormat ff_alsa_demuxer = {
158     "alsa",
159     NULL_IF_CONFIG_SMALL("ALSA audio input"),
160     sizeof(AlsaData),
161     NULL,
162     audio_read_header,
163     audio_read_packet,
164     ff_alsa_close,
165     .flags = AVFMT_NOFILE,
166     .priv_class = &alsa_demuxer_class,
167 };