2 * Linux audio play and grab interface
3 * Copyright (c) 2000, 2001 Fabrice Bellard
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
29 #include <soundcard.h>
31 #include <sys/soundcard.h>
35 #include <sys/ioctl.h>
37 #include "libavutil/internal.h"
38 #include "libavutil/log.h"
39 #include "libavutil/opt.h"
40 #include "libavutil/time.h"
41 #include "libavcodec/avcodec.h"
43 #include "libavformat/internal.h"
45 #define AUDIO_BLOCK_SIZE 4096
52 int frame_size; /* in bytes ! */
53 enum AVCodecID codec_id;
54 unsigned int flip_left : 1;
55 uint8_t buffer[AUDIO_BLOCK_SIZE];
59 static int audio_open(AVFormatContext *s1, int is_output, const char *audio_device)
61 AudioData *s = s1->priv_data;
64 char *flip = getenv("AUDIO_FLIP_LEFT");
67 audio_fd = avpriv_open(audio_device, O_WRONLY);
69 audio_fd = avpriv_open(audio_device, O_RDONLY);
71 av_log(s1, AV_LOG_ERROR, "%s: %s\n", audio_device, strerror(errno));
75 if (flip && *flip == '1') {
79 /* non blocking mode */
81 if (fcntl(audio_fd, F_SETFL, O_NONBLOCK) < 0) {
82 av_log(s1, AV_LOG_WARNING, "%s: Could not enable non block mode (%s)\n", audio_device, strerror(errno));
86 s->frame_size = AUDIO_BLOCK_SIZE;
88 /* select format : favour native format */
89 err = ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &tmp);
92 if (tmp & AFMT_S16_BE) {
94 } else if (tmp & AFMT_S16_LE) {
100 if (tmp & AFMT_S16_LE) {
102 } else if (tmp & AFMT_S16_BE) {
111 s->codec_id = AV_CODEC_ID_PCM_S16LE;
114 s->codec_id = AV_CODEC_ID_PCM_S16BE;
117 av_log(s1, AV_LOG_ERROR, "Soundcard does not support 16 bit sample format\n");
121 err=ioctl(audio_fd, SNDCTL_DSP_SETFMT, &tmp);
123 av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_SETFMT: %s\n", strerror(errno));
127 tmp = (s->channels == 2);
128 err = ioctl(audio_fd, SNDCTL_DSP_STEREO, &tmp);
130 av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_STEREO: %s\n", strerror(errno));
134 tmp = s->sample_rate;
135 err = ioctl(audio_fd, SNDCTL_DSP_SPEED, &tmp);
137 av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_SPEED: %s\n", strerror(errno));
140 s->sample_rate = tmp; /* store real sample rate */
149 static int audio_close(AudioData *s)
155 /* sound output support */
156 static int audio_write_header(AVFormatContext *s1)
158 AudioData *s = s1->priv_data;
163 s->sample_rate = st->codec->sample_rate;
164 s->channels = st->codec->channels;
165 ret = audio_open(s1, 1, s1->filename);
173 static int audio_write_packet(AVFormatContext *s1, AVPacket *pkt)
175 AudioData *s = s1->priv_data;
178 uint8_t *buf= pkt->data;
181 len = FFMIN(AUDIO_BLOCK_SIZE - s->buffer_ptr, size);
182 memcpy(s->buffer + s->buffer_ptr, buf, len);
183 s->buffer_ptr += len;
184 if (s->buffer_ptr >= AUDIO_BLOCK_SIZE) {
186 ret = write(s->fd, s->buffer, AUDIO_BLOCK_SIZE);
189 if (ret < 0 && (errno != EAGAIN && errno != EINTR))
200 static int audio_write_trailer(AVFormatContext *s1)
202 AudioData *s = s1->priv_data;
210 static int audio_read_header(AVFormatContext *s1)
212 AudioData *s = s1->priv_data;
216 st = avformat_new_stream(s1, NULL);
218 return AVERROR(ENOMEM);
221 ret = audio_open(s1, 0, s1->filename);
226 /* take real parameters */
227 st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
228 st->codec->codec_id = s->codec_id;
229 st->codec->sample_rate = s->sample_rate;
230 st->codec->channels = s->channels;
232 avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
236 static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
238 AudioData *s = s1->priv_data;
241 struct audio_buf_info abufi;
243 if ((ret=av_new_packet(pkt, s->frame_size)) < 0)
246 ret = read(s->fd, pkt->data, pkt->size);
250 if (ret<0) return AVERROR(errno);
251 else return AVERROR_EOF;
255 /* compute pts of the start of the packet */
256 cur_time = av_gettime();
258 if (ioctl(s->fd, SNDCTL_DSP_GETISPACE, &abufi) == 0) {
259 bdelay += abufi.bytes;
261 /* subtract time represented by the number of bytes in the audio fifo */
262 cur_time -= (bdelay * 1000000LL) / (s->sample_rate * s->channels);
264 /* convert to wanted units */
267 if (s->flip_left && s->channels == 2) {
269 short *p = (short *) pkt->data;
271 for (i = 0; i < ret; i += 4) {
279 static int audio_read_close(AVFormatContext *s1)
281 AudioData *s = s1->priv_data;
288 static const AVOption options[] = {
289 { "sample_rate", "", offsetof(AudioData, sample_rate), AV_OPT_TYPE_INT, {.i64 = 48000}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
290 { "channels", "", offsetof(AudioData, channels), AV_OPT_TYPE_INT, {.i64 = 2}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
294 static const AVClass oss_demuxer_class = {
295 .class_name = "OSS demuxer",
296 .item_name = av_default_item_name,
298 .version = LIBAVUTIL_VERSION_INT,
301 AVInputFormat ff_oss_demuxer = {
303 .long_name = NULL_IF_CONFIG_SMALL("OSS (Open Sound System) capture"),
304 .priv_data_size = sizeof(AudioData),
305 .read_header = audio_read_header,
306 .read_packet = audio_read_packet,
307 .read_close = audio_read_close,
308 .flags = AVFMT_NOFILE,
309 .priv_class = &oss_demuxer_class,
313 #if CONFIG_OSS_OUTDEV
314 AVOutputFormat ff_oss_muxer = {
316 .long_name = NULL_IF_CONFIG_SMALL("OSS (Open Sound System) playback"),
317 .priv_data_size = sizeof(AudioData),
318 /* XXX: we make the assumption that the soundcard accepts this format */
319 /* XXX: find better solution with "preinit" method, needed also in
321 .audio_codec = AV_NE(AV_CODEC_ID_PCM_S16BE, AV_CODEC_ID_PCM_S16LE),
322 .video_codec = AV_CODEC_ID_NONE,
323 .write_header = audio_write_header,
324 .write_packet = audio_write_packet,
325 .write_trailer = audio_write_trailer,
326 .flags = AVFMT_NOFILE,