alsa_dec.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. * @file
  24. * ALSA input and output: input
  25. * @author Luca Abeni ( lucabe72 email it )
  26. * @author Benoit Fouet ( benoit fouet free fr )
  27. * @author Nicolas George ( nicolas george normalesup org )
  28. *
  29. * This avdevice decoder can capture audio from an ALSA (Advanced
  30. * Linux Sound Architecture) device.
  31. *
  32. * The filename parameter is the name of an ALSA PCM device capable of
  33. * capture, for example "default" or "plughw:1"; see the ALSA documentation
  34. * for naming conventions. The empty string is equivalent to "default".
  35. *
  36. * The capture period is set to the lower value available for the device,
  37. * which gives a low latency suitable for real-time capture.
  38. *
  39. * The PTS are an Unix time in microsecond.
  40. *
  41. * Due to a bug in the ALSA library
  42. * (https://bugtrack.alsa-project.org/alsa-bug/view.php?id=4308), this
  43. * decoder does not work with certain ALSA plugins, especially the dsnoop
  44. * plugin.
  45. */
  46. #include <alsa/asoundlib.h>
  47. #include "libavutil/internal.h"
  48. #include "libavutil/mathematics.h"
  49. #include "libavutil/opt.h"
  50. #include "libavutil/time.h"
  51. #include "libavformat/demux.h"
  52. #include "libavformat/internal.h"
  53. #include "avdevice.h"
  54. #include "alsa.h"
  55. static av_cold int audio_read_header(AVFormatContext *s1)
  56. {
  57. AlsaData *s = s1->priv_data;
  58. AVStream *st;
  59. int ret;
  60. enum AVCodecID codec_id;
  61. st = avformat_new_stream(s1, NULL);
  62. if (!st) {
  63. av_log(s1, AV_LOG_ERROR, "Cannot add stream\n");
  64. return AVERROR(ENOMEM);
  65. }
  66. codec_id = s1->audio_codec_id;
  67. #if FF_API_ALSA_CHANNELS
  68. if (s->channels > 0) {
  69. av_channel_layout_uninit(&s->ch_layout);
  70. s->ch_layout.nb_channels = s->channels;
  71. }
  72. #endif
  73. ret = ff_alsa_open(s1, SND_PCM_STREAM_CAPTURE, &s->sample_rate, s->ch_layout.nb_channels,
  74. &codec_id);
  75. if (ret < 0) {
  76. return AVERROR(EIO);
  77. }
  78. /* take real parameters */
  79. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  80. st->codecpar->codec_id = codec_id;
  81. st->codecpar->sample_rate = s->sample_rate;
  82. ret = av_channel_layout_copy(&st->codecpar->ch_layout, &s->ch_layout);
  83. if (ret < 0)
  84. goto fail;
  85. st->codecpar->frame_size = s->frame_size;
  86. avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
  87. /* microseconds instead of seconds, MHz instead of Hz */
  88. s->timefilter = ff_timefilter_new(1000000.0 / s->sample_rate,
  89. s->period_size, 1.5E-6);
  90. if (!s->timefilter) {
  91. ret = AVERROR(EIO);
  92. goto fail;
  93. }
  94. return 0;
  95. fail:
  96. snd_pcm_close(s->h);
  97. return ret;
  98. }
  99. static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
  100. {
  101. AlsaData *s = s1->priv_data;
  102. int res;
  103. int64_t dts;
  104. snd_pcm_sframes_t delay = 0;
  105. if (!s->pkt->data) {
  106. int ret = av_new_packet(s->pkt, s->period_size * s->frame_size);
  107. if (ret < 0)
  108. return ret;
  109. s->pkt->size = 0;
  110. }
  111. do {
  112. while ((res = snd_pcm_readi(s->h, s->pkt->data + s->pkt->size, s->period_size - s->pkt->size / s->frame_size)) < 0) {
  113. if (res == -EAGAIN) {
  114. return AVERROR(EAGAIN);
  115. }
  116. s->pkt->size = 0;
  117. if (ff_alsa_xrun_recover(s1, res) < 0) {
  118. av_log(s1, AV_LOG_ERROR, "ALSA read error: %s\n",
  119. snd_strerror(res));
  120. return AVERROR(EIO);
  121. }
  122. ff_timefilter_reset(s->timefilter);
  123. }
  124. s->pkt->size += res * s->frame_size;
  125. } while (s->pkt->size < s->period_size * s->frame_size);
  126. av_packet_move_ref(pkt, s->pkt);
  127. dts = av_gettime();
  128. snd_pcm_delay(s->h, &delay);
  129. dts -= av_rescale(delay + res, 1000000, s->sample_rate);
  130. pkt->pts = ff_timefilter_update(s->timefilter, dts, s->last_period);
  131. s->last_period = res;
  132. return 0;
  133. }
  134. static int audio_get_device_list(AVFormatContext *h, AVDeviceInfoList *device_list)
  135. {
  136. return ff_alsa_get_device_list(device_list, SND_PCM_STREAM_CAPTURE);
  137. }
  138. static const AVOption options[] = {
  139. { "sample_rate", "", offsetof(AlsaData, sample_rate), AV_OPT_TYPE_INT, {.i64 = 48000}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  140. #if FF_API_ALSA_CHANNELS
  141. { "channels", "", offsetof(AlsaData, channels), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_DEPRECATED },
  142. #endif
  143. { "ch_layout", "", offsetof(AlsaData, ch_layout), AV_OPT_TYPE_CHLAYOUT, {.str = "2C"}, INT_MIN, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
  144. { NULL },
  145. };
  146. static const AVClass alsa_demuxer_class = {
  147. .class_name = "ALSA indev",
  148. .item_name = av_default_item_name,
  149. .option = options,
  150. .version = LIBAVUTIL_VERSION_INT,
  151. .category = AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT,
  152. };
  153. const FFInputFormat ff_alsa_demuxer = {
  154. .p.name = "alsa",
  155. .p.long_name = NULL_IF_CONFIG_SMALL("ALSA audio input"),
  156. .p.flags = AVFMT_NOFILE,
  157. .p.priv_class = &alsa_demuxer_class,
  158. .priv_data_size = sizeof(AlsaData),
  159. .read_header = audio_read_header,
  160. .read_packet = audio_read_packet,
  161. .read_close = ff_alsa_close,
  162. .get_device_list = audio_get_device_list,
  163. };