2001-07-22 17:18:56 +03:00
|
|
|
/*
|
|
|
|
* Linux audio play and grab interface
|
2009-01-19 17:46:40 +02:00
|
|
|
* Copyright (c) 2000, 2001 Fabrice Bellard
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2006-10-07 18:30:46 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2002-05-26 01:34:32 +03:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 18:30:46 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2001-07-22 17:18:56 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-26 01:34:32 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 17:18:56 +03:00
|
|
|
*
|
2002-05-26 01:34:32 +03:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-13 00:43:26 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 17:18:56 +03:00
|
|
|
*/
|
2001-08-14 00:37:10 +03:00
|
|
|
|
2008-05-08 13:09:30 +03:00
|
|
|
#include "config.h"
|
2001-07-22 17:18:56 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2008-05-08 13:09:30 +03:00
|
|
|
#include <stdint.h>
|
2001-07-22 17:18:56 +03:00
|
|
|
#include <string.h>
|
2008-05-08 13:09:30 +03:00
|
|
|
#include <errno.h>
|
2009-01-14 01:44:16 +02:00
|
|
|
#if HAVE_SOUNDCARD_H
|
2005-05-09 16:24:23 +03:00
|
|
|
#include <soundcard.h>
|
|
|
|
#else
|
2002-05-26 18:09:58 +03:00
|
|
|
#include <sys/soundcard.h>
|
2005-05-09 16:24:23 +03:00
|
|
|
#endif
|
2001-07-22 17:18:56 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/time.h>
|
2008-10-20 08:26:52 +03:00
|
|
|
#include <sys/select.h>
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2008-05-09 14:56:36 +03:00
|
|
|
#include "libavutil/log.h"
|
2011-05-23 20:02:40 +03:00
|
|
|
#include "libavutil/opt.h"
|
2008-05-09 14:56:36 +03:00
|
|
|
#include "libavcodec/avcodec.h"
|
|
|
|
#include "libavformat/avformat.h"
|
2008-05-08 13:09:30 +03:00
|
|
|
|
2001-09-25 02:27:06 +03:00
|
|
|
#define AUDIO_BLOCK_SIZE 4096
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
typedef struct {
|
2011-05-23 20:02:40 +03:00
|
|
|
AVClass *class;
|
2001-07-22 17:18:56 +03:00
|
|
|
int fd;
|
2001-09-25 02:27:06 +03:00
|
|
|
int sample_rate;
|
2001-07-22 17:18:56 +03:00
|
|
|
int channels;
|
2001-09-25 02:27:06 +03:00
|
|
|
int frame_size; /* in bytes ! */
|
2008-10-02 19:03:00 +03:00
|
|
|
enum CodecID codec_id;
|
2008-07-09 02:20:22 +03:00
|
|
|
unsigned int flip_left : 1;
|
2003-02-11 18:35:48 +02:00
|
|
|
uint8_t buffer[AUDIO_BLOCK_SIZE];
|
2001-09-25 02:27:06 +03:00
|
|
|
int buffer_ptr;
|
2001-07-22 17:18:56 +03:00
|
|
|
} AudioData;
|
|
|
|
|
2009-01-20 10:00:59 +02:00
|
|
|
static int audio_open(AVFormatContext *s1, int is_output, const char *audio_device)
|
2001-07-22 17:18:56 +03:00
|
|
|
{
|
2009-01-20 10:00:59 +02:00
|
|
|
AudioData *s = s1->priv_data;
|
2001-09-25 02:27:06 +03:00
|
|
|
int audio_fd;
|
2001-07-22 17:18:56 +03:00
|
|
|
int tmp, err;
|
2002-05-09 04:15:21 +03:00
|
|
|
char *flip = getenv("AUDIO_FLIP_LEFT");
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2001-09-25 02:27:06 +03:00
|
|
|
if (is_output)
|
|
|
|
audio_fd = open(audio_device, O_WRONLY);
|
2001-07-22 17:18:56 +03:00
|
|
|
else
|
2001-09-25 02:27:06 +03:00
|
|
|
audio_fd = open(audio_device, O_RDONLY);
|
2001-07-22 17:18:56 +03:00
|
|
|
if (audio_fd < 0) {
|
2009-01-20 10:01:32 +02:00
|
|
|
av_log(s1, AV_LOG_ERROR, "%s: %s\n", audio_device, strerror(errno));
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2001-07-22 17:18:56 +03:00
|
|
|
}
|
|
|
|
|
2002-05-09 04:15:21 +03:00
|
|
|
if (flip && *flip == '1') {
|
|
|
|
s->flip_left = 1;
|
|
|
|
}
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
/* non blocking mode */
|
2002-11-19 20:21:18 +02:00
|
|
|
if (!is_output)
|
|
|
|
fcntl(audio_fd, F_SETFL, O_NONBLOCK);
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2001-09-25 02:27:06 +03:00
|
|
|
s->frame_size = AUDIO_BLOCK_SIZE;
|
2001-07-22 17:18:56 +03:00
|
|
|
#if 0
|
2001-09-25 02:27:06 +03:00
|
|
|
tmp = (NB_FRAGMENTS << 16) | FRAGMENT_BITS;
|
|
|
|
err = ioctl(audio_fd, SNDCTL_DSP_SETFRAGMENT, &tmp);
|
2001-07-22 17:18:56 +03:00
|
|
|
if (err < 0) {
|
|
|
|
perror("SNDCTL_DSP_SETFRAGMENT");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-09-25 02:27:06 +03:00
|
|
|
/* select format : favour native format */
|
|
|
|
err = ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &tmp);
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2009-07-26 15:20:04 +03:00
|
|
|
#if HAVE_BIGENDIAN
|
2001-09-25 02:27:06 +03:00
|
|
|
if (tmp & AFMT_S16_BE) {
|
|
|
|
tmp = AFMT_S16_BE;
|
|
|
|
} else if (tmp & AFMT_S16_LE) {
|
|
|
|
tmp = AFMT_S16_LE;
|
|
|
|
} else {
|
|
|
|
tmp = 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (tmp & AFMT_S16_LE) {
|
|
|
|
tmp = AFMT_S16_LE;
|
|
|
|
} else if (tmp & AFMT_S16_BE) {
|
|
|
|
tmp = AFMT_S16_BE;
|
|
|
|
} else {
|
|
|
|
tmp = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch(tmp) {
|
|
|
|
case AFMT_S16_LE:
|
|
|
|
s->codec_id = CODEC_ID_PCM_S16LE;
|
|
|
|
break;
|
|
|
|
case AFMT_S16_BE:
|
|
|
|
s->codec_id = CODEC_ID_PCM_S16BE;
|
|
|
|
break;
|
|
|
|
default:
|
2009-01-20 10:01:32 +02:00
|
|
|
av_log(s1, AV_LOG_ERROR, "Soundcard does not support 16 bit sample format\n");
|
2001-09-25 02:27:06 +03:00
|
|
|
close(audio_fd);
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2001-09-25 02:27:06 +03:00
|
|
|
}
|
|
|
|
err=ioctl(audio_fd, SNDCTL_DSP_SETFMT, &tmp);
|
2001-07-22 17:18:56 +03:00
|
|
|
if (err < 0) {
|
2009-01-20 10:01:32 +02:00
|
|
|
av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_SETFMT: %s\n", strerror(errno));
|
2001-07-22 17:18:56 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2001-09-25 02:27:06 +03:00
|
|
|
tmp = (s->channels == 2);
|
|
|
|
err = ioctl(audio_fd, SNDCTL_DSP_STEREO, &tmp);
|
2001-07-22 17:18:56 +03:00
|
|
|
if (err < 0) {
|
2009-01-20 10:01:32 +02:00
|
|
|
av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_STEREO: %s\n", strerror(errno));
|
2001-07-22 17:18:56 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2001-09-25 02:27:06 +03:00
|
|
|
tmp = s->sample_rate;
|
|
|
|
err = ioctl(audio_fd, SNDCTL_DSP_SPEED, &tmp);
|
2001-07-22 17:18:56 +03:00
|
|
|
if (err < 0) {
|
2009-01-20 10:01:32 +02:00
|
|
|
av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_SPEED: %s\n", strerror(errno));
|
2001-07-22 17:18:56 +03:00
|
|
|
goto fail;
|
|
|
|
}
|
2001-09-25 02:27:06 +03:00
|
|
|
s->sample_rate = tmp; /* store real sample rate */
|
2001-07-22 17:18:56 +03:00
|
|
|
s->fd = audio_fd;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
close(audio_fd);
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2001-07-22 17:18:56 +03:00
|
|
|
}
|
|
|
|
|
2001-09-25 02:27:06 +03:00
|
|
|
static int audio_close(AudioData *s)
|
2001-07-22 17:18:56 +03:00
|
|
|
{
|
|
|
|
close(s->fd);
|
2001-09-25 02:27:06 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sound output support */
|
|
|
|
static int audio_write_header(AVFormatContext *s1)
|
|
|
|
{
|
2002-05-20 19:31:13 +03:00
|
|
|
AudioData *s = s1->priv_data;
|
2001-09-25 02:27:06 +03:00
|
|
|
AVStream *st;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
st = s1->streams[0];
|
2005-07-18 01:24:36 +03:00
|
|
|
s->sample_rate = st->codec->sample_rate;
|
|
|
|
s->channels = st->codec->channels;
|
2009-01-20 10:00:59 +02:00
|
|
|
ret = audio_open(s1, 1, s1->filename);
|
2001-09-25 02:27:06 +03:00
|
|
|
if (ret < 0) {
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2001-09-25 02:27:06 +03:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-29 05:06:32 +03:00
|
|
|
static int audio_write_packet(AVFormatContext *s1, AVPacket *pkt)
|
2001-09-25 02:27:06 +03:00
|
|
|
{
|
|
|
|
AudioData *s = s1->priv_data;
|
|
|
|
int len, ret;
|
2004-05-29 05:06:32 +03:00
|
|
|
int size= pkt->size;
|
|
|
|
uint8_t *buf= pkt->data;
|
2001-09-25 02:27:06 +03:00
|
|
|
|
|
|
|
while (size > 0) {
|
|
|
|
len = AUDIO_BLOCK_SIZE - s->buffer_ptr;
|
|
|
|
if (len > size)
|
|
|
|
len = size;
|
|
|
|
memcpy(s->buffer + s->buffer_ptr, buf, len);
|
|
|
|
s->buffer_ptr += len;
|
|
|
|
if (s->buffer_ptr >= AUDIO_BLOCK_SIZE) {
|
|
|
|
for(;;) {
|
|
|
|
ret = write(s->fd, s->buffer, AUDIO_BLOCK_SIZE);
|
2002-11-19 20:21:18 +02:00
|
|
|
if (ret > 0)
|
2001-09-25 02:27:06 +03:00
|
|
|
break;
|
|
|
|
if (ret < 0 && (errno != EAGAIN && errno != EINTR))
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2001-09-25 02:27:06 +03:00
|
|
|
}
|
|
|
|
s->buffer_ptr = 0;
|
|
|
|
}
|
|
|
|
buf += len;
|
|
|
|
size -= len;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int audio_write_trailer(AVFormatContext *s1)
|
|
|
|
{
|
|
|
|
AudioData *s = s1->priv_data;
|
|
|
|
|
|
|
|
audio_close(s);
|
2001-07-22 17:18:56 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-09-25 02:27:06 +03:00
|
|
|
/* grab support */
|
|
|
|
|
|
|
|
static int audio_read_header(AVFormatContext *s1, AVFormatParameters *ap)
|
|
|
|
{
|
2002-05-20 19:31:13 +03:00
|
|
|
AudioData *s = s1->priv_data;
|
2001-09-25 02:27:06 +03:00
|
|
|
AVStream *st;
|
|
|
|
int ret;
|
|
|
|
|
2011-05-23 21:13:28 +03:00
|
|
|
#if FF_API_FORMAT_PARAMETERS
|
2011-05-23 20:02:40 +03:00
|
|
|
if (ap->sample_rate > 0)
|
|
|
|
s->sample_rate = ap->sample_rate;
|
|
|
|
if (ap->channels > 0)
|
|
|
|
s->channels = ap->channels;
|
2011-05-23 21:13:28 +03:00
|
|
|
#endif
|
2001-09-25 02:27:06 +03:00
|
|
|
|
2002-05-20 19:31:13 +03:00
|
|
|
st = av_new_stream(s1, 0);
|
2001-09-25 02:27:06 +03:00
|
|
|
if (!st) {
|
2007-02-13 20:26:14 +02:00
|
|
|
return AVERROR(ENOMEM);
|
2001-09-25 02:27:06 +03:00
|
|
|
}
|
|
|
|
|
2009-01-20 10:00:59 +02:00
|
|
|
ret = audio_open(s1, 0, s1->filename);
|
2001-09-25 02:27:06 +03:00
|
|
|
if (ret < 0) {
|
2007-07-19 18:23:32 +03:00
|
|
|
return AVERROR(EIO);
|
2001-09-25 02:27:06 +03:00
|
|
|
}
|
2002-11-19 17:52:29 +02:00
|
|
|
|
|
|
|
/* take real parameters */
|
2010-03-31 02:30:55 +03:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2005-07-18 01:24:36 +03:00
|
|
|
st->codec->codec_id = s->codec_id;
|
|
|
|
st->codec->sample_rate = s->sample_rate;
|
|
|
|
st->codec->channels = s->channels;
|
2002-11-19 17:52:29 +02:00
|
|
|
|
2006-02-01 13:31:33 +02:00
|
|
|
av_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
|
2002-11-19 17:52:29 +02:00
|
|
|
return 0;
|
2001-09-25 02:27:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
|
|
|
|
{
|
|
|
|
AudioData *s = s1->priv_data;
|
2002-11-19 17:52:29 +02:00
|
|
|
int ret, bdelay;
|
|
|
|
int64_t cur_time;
|
|
|
|
struct audio_buf_info abufi;
|
2005-12-17 20:14:38 +02:00
|
|
|
|
2009-11-27 15:48:37 +02:00
|
|
|
if ((ret=av_new_packet(pkt, s->frame_size)) < 0)
|
|
|
|
return ret;
|
2003-02-05 03:59:52 +02:00
|
|
|
|
2010-02-21 05:23:30 +02:00
|
|
|
ret = read(s->fd, pkt->data, pkt->size);
|
2009-11-27 15:37:53 +02:00
|
|
|
if (ret <= 0){
|
|
|
|
av_free_packet(pkt);
|
|
|
|
pkt->size = 0;
|
|
|
|
if (ret<0) return AVERROR(errno);
|
2010-03-25 02:41:54 +02:00
|
|
|
else return AVERROR_EOF;
|
2001-09-25 02:27:06 +03:00
|
|
|
}
|
|
|
|
pkt->size = ret;
|
2002-11-19 17:52:29 +02:00
|
|
|
|
|
|
|
/* compute pts of the start of the packet */
|
|
|
|
cur_time = av_gettime();
|
|
|
|
bdelay = ret;
|
|
|
|
if (ioctl(s->fd, SNDCTL_DSP_GETISPACE, &abufi) == 0) {
|
|
|
|
bdelay += abufi.bytes;
|
|
|
|
}
|
2007-12-02 00:21:04 +02:00
|
|
|
/* subtract time represented by the number of bytes in the audio fifo */
|
2002-11-19 17:52:29 +02:00
|
|
|
cur_time -= (bdelay * 1000000LL) / (s->sample_rate * s->channels);
|
|
|
|
|
|
|
|
/* convert to wanted units */
|
2006-02-01 13:31:33 +02:00
|
|
|
pkt->pts = cur_time;
|
2002-11-19 17:52:29 +02:00
|
|
|
|
2002-05-09 04:15:21 +03:00
|
|
|
if (s->flip_left && s->channels == 2) {
|
|
|
|
int i;
|
|
|
|
short *p = (short *) pkt->data;
|
|
|
|
|
|
|
|
for (i = 0; i < ret; i += 4) {
|
|
|
|
*p = ~*p;
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
}
|
2001-09-25 02:27:06 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int audio_read_close(AVFormatContext *s1)
|
|
|
|
{
|
|
|
|
AudioData *s = s1->priv_data;
|
|
|
|
|
|
|
|
audio_close(s);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-06-29 21:49:15 +03:00
|
|
|
#if CONFIG_OSS_INDEV
|
2011-05-23 20:02:40 +03:00
|
|
|
static const AVOption options[] = {
|
|
|
|
{ "sample_rate", "", offsetof(AudioData, sample_rate), FF_OPT_TYPE_INT, {.dbl = 48000}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
|
|
|
|
{ "channels", "", offsetof(AudioData, channels), FF_OPT_TYPE_INT, {.dbl = 2}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
|
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass oss_demuxer_class = {
|
|
|
|
.class_name = "OSS demuxer",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
2011-01-26 00:03:28 +02:00
|
|
|
AVInputFormat ff_oss_demuxer = {
|
2007-09-07 16:49:44 +03:00
|
|
|
"oss",
|
2008-08-08 15:52:12 +03:00
|
|
|
NULL_IF_CONFIG_SMALL("Open Sound System capture"),
|
2002-05-20 19:31:13 +03:00
|
|
|
sizeof(AudioData),
|
|
|
|
NULL,
|
|
|
|
audio_read_header,
|
|
|
|
audio_read_packet,
|
|
|
|
audio_read_close,
|
2002-10-07 02:06:06 +03:00
|
|
|
.flags = AVFMT_NOFILE,
|
2011-05-23 20:02:40 +03:00
|
|
|
.priv_class = &oss_demuxer_class,
|
2002-05-20 19:31:13 +03:00
|
|
|
};
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|
2002-05-20 19:31:13 +03:00
|
|
|
|
2009-06-29 21:49:15 +03:00
|
|
|
#if CONFIG_OSS_OUTDEV
|
2011-01-26 00:03:28 +02:00
|
|
|
AVOutputFormat ff_oss_muxer = {
|
2007-09-07 16:49:44 +03:00
|
|
|
"oss",
|
2008-08-08 15:52:12 +03:00
|
|
|
NULL_IF_CONFIG_SMALL("Open Sound System playback"),
|
2001-09-25 02:27:06 +03:00
|
|
|
"",
|
|
|
|
"",
|
2002-05-20 19:31:13 +03:00
|
|
|
sizeof(AudioData),
|
2001-09-25 02:27:06 +03:00
|
|
|
/* XXX: we make the assumption that the soundcard accepts this format */
|
|
|
|
/* XXX: find better solution with "preinit" method, needed also in
|
|
|
|
other formats */
|
2010-08-17 21:25:34 +03:00
|
|
|
AV_NE(CODEC_ID_PCM_S16BE, CODEC_ID_PCM_S16LE),
|
2001-09-25 02:27:06 +03:00
|
|
|
CODEC_ID_NONE,
|
|
|
|
audio_write_header,
|
|
|
|
audio_write_packet,
|
|
|
|
audio_write_trailer,
|
2002-10-07 02:06:06 +03:00
|
|
|
.flags = AVFMT_NOFILE,
|
2001-07-22 17:18:56 +03:00
|
|
|
};
|
2006-07-11 00:14:37 +03:00
|
|
|
#endif
|