alsa-audio-dec.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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 libavdevice/alsa-audio-dec.c
  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 allows to 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 "libavformat/avformat.h"
  47. #include <alsa/asoundlib.h>
  48. #include "alsa-audio.h"
  49. av_cold static int audio_read_header(AVFormatContext *s1,
  50. AVFormatParameters *ap)
  51. {
  52. AlsaData *s = s1->priv_data;
  53. AVStream *st;
  54. int ret;
  55. unsigned int sample_rate;
  56. int codec_id;
  57. snd_pcm_sw_params_t *sw_params;
  58. if (ap->sample_rate <= 0) {
  59. av_log(s1, AV_LOG_ERROR, "Bad sample rate %d\n", ap->sample_rate);
  60. return AVERROR(EIO);
  61. }
  62. if (ap->channels <= 0) {
  63. av_log(s1, AV_LOG_ERROR, "Bad channels number %d\n", ap->channels);
  64. return AVERROR(EIO);
  65. }
  66. st = av_new_stream(s1, 0);
  67. if (!st) {
  68. av_log(s1, AV_LOG_ERROR, "Cannot add stream\n");
  69. return AVERROR(ENOMEM);
  70. }
  71. sample_rate = ap->sample_rate;
  72. codec_id = ap->audio_codec_id;
  73. ret = ff_alsa_open(s1, SND_PCM_STREAM_CAPTURE, &sample_rate, ap->channels,
  74. &codec_id);
  75. if (ret < 0) {
  76. return AVERROR(EIO);
  77. }
  78. if (snd_pcm_type(s->h) != SND_PCM_TYPE_HW)
  79. av_log(s1, AV_LOG_WARNING,
  80. "capture with some ALSA plugins, especially dsnoop, "
  81. "may hang.\n");
  82. ret = snd_pcm_sw_params_malloc(&sw_params);
  83. if (ret < 0) {
  84. av_log(s1, AV_LOG_ERROR, "cannot allocate software parameters structure (%s)\n",
  85. snd_strerror(ret));
  86. goto fail;
  87. }
  88. snd_pcm_sw_params_current(s->h, sw_params);
  89. snd_pcm_sw_params_set_tstamp_mode(s->h, sw_params, SND_PCM_TSTAMP_ENABLE);
  90. ret = snd_pcm_sw_params(s->h, sw_params);
  91. snd_pcm_sw_params_free(sw_params);
  92. if (ret < 0) {
  93. av_log(s1, AV_LOG_ERROR, "cannot install ALSA software parameters (%s)\n",
  94. snd_strerror(ret));
  95. goto fail;
  96. }
  97. /* take real parameters */
  98. st->codec->codec_type = CODEC_TYPE_AUDIO;
  99. st->codec->codec_id = codec_id;
  100. st->codec->sample_rate = sample_rate;
  101. st->codec->channels = ap->channels;
  102. av_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
  103. return 0;
  104. fail:
  105. snd_pcm_close(s->h);
  106. return AVERROR(EIO);
  107. }
  108. static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
  109. {
  110. AlsaData *s = s1->priv_data;
  111. AVStream *st = s1->streams[0];
  112. int res;
  113. snd_htimestamp_t timestamp;
  114. snd_pcm_uframes_t ts_delay;
  115. if (av_new_packet(pkt, s->period_size) < 0) {
  116. return AVERROR(EIO);
  117. }
  118. while ((res = snd_pcm_readi(s->h, pkt->data, pkt->size / s->frame_size)) < 0) {
  119. if (res == -EAGAIN) {
  120. av_free_packet(pkt);
  121. return AVERROR(EAGAIN);
  122. }
  123. if (ff_alsa_xrun_recover(s1, res) < 0) {
  124. av_log(s1, AV_LOG_ERROR, "ALSA read error: %s\n",
  125. snd_strerror(res));
  126. av_free_packet(pkt);
  127. return AVERROR(EIO);
  128. }
  129. }
  130. snd_pcm_htimestamp(s->h, &ts_delay, &timestamp);
  131. ts_delay += res;
  132. pkt->pts = timestamp.tv_sec * 1000000LL
  133. + (timestamp.tv_nsec * st->codec->sample_rate
  134. - ts_delay * 1000000000LL + st->codec->sample_rate * 500LL)
  135. / (st->codec->sample_rate * 1000LL);
  136. pkt->size = res * s->frame_size;
  137. return 0;
  138. }
  139. AVInputFormat alsa_demuxer = {
  140. "alsa",
  141. NULL_IF_CONFIG_SMALL("ALSA audio input"),
  142. sizeof(AlsaData),
  143. NULL,
  144. audio_read_header,
  145. audio_read_packet,
  146. ff_alsa_close,
  147. .flags = AVFMT_NOFILE,
  148. };