2001-07-22 14:18:56 +00:00
|
|
|
/*
|
|
|
|
* Linux audio play and grab interface
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2000, 2001 Fabrice Bellard
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-25 22:34:32 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-07-22 14:18:56 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:34:32 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2002-05-25 22:34:32 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 14:18:56 +00:00
|
|
|
*/
|
2001-08-13 21:37:10 +00:00
|
|
|
|
2008-05-08 10:09:30 +00:00
|
|
|
#include "config.h"
|
2014-07-18 10:43:15 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
#include <string.h>
|
2014-07-18 10:43:15 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if HAVE_SOUNDCARD_H
|
2005-05-09 13:24:23 +00:00
|
|
|
#include <soundcard.h>
|
|
|
|
#else
|
2002-05-26 15:09:58 +00:00
|
|
|
#include <sys/soundcard.h>
|
2005-05-09 13:24:23 +00:00
|
|
|
#endif
|
2014-07-18 10:43:15 +00:00
|
|
|
|
2014-07-08 00:48:51 +00:00
|
|
|
#if HAVE_UNISTD_H
|
2001-07-22 14:18:56 +00:00
|
|
|
#include <unistd.h>
|
2014-07-08 00:48:51 +00:00
|
|
|
#endif
|
2001-07-22 14:18:56 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavutil/log.h"
|
2014-07-18 10:43:15 +00:00
|
|
|
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavcodec/avcodec.h"
|
2011-05-26 17:11:25 +00:00
|
|
|
#include "avdevice.h"
|
2008-05-08 10:09:30 +00:00
|
|
|
|
2015-03-27 11:40:23 +00:00
|
|
|
#include "oss.h"
|
2001-09-24 23:27:06 +00:00
|
|
|
|
2014-07-18 10:43:15 +00:00
|
|
|
int ff_oss_audio_open(AVFormatContext *s1, int is_output,
|
|
|
|
const char *audio_device)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2014-07-18 10:43:15 +00:00
|
|
|
OSSAudioData *s = s1->priv_data;
|
2001-09-24 23:27:06 +00:00
|
|
|
int audio_fd;
|
2001-07-22 14:18:56 +00:00
|
|
|
int tmp, err;
|
2002-05-09 01:15:21 +00:00
|
|
|
char *flip = getenv("AUDIO_FLIP_LEFT");
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2001-09-24 23:27:06 +00:00
|
|
|
if (is_output)
|
2013-08-06 18:19:27 +00:00
|
|
|
audio_fd = avpriv_open(audio_device, O_WRONLY);
|
2001-07-22 14:18:56 +00:00
|
|
|
else
|
2013-08-06 18:19:27 +00:00
|
|
|
audio_fd = avpriv_open(audio_device, O_RDONLY);
|
2001-07-22 14:18:56 +00:00
|
|
|
if (audio_fd < 0) {
|
2014-10-18 21:24:23 +00:00
|
|
|
av_log(s1, AV_LOG_ERROR, "%s: %s\n", audio_device, av_err2str(AVERROR(errno)));
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2002-05-09 01:15:21 +00:00
|
|
|
if (flip && *flip == '1') {
|
|
|
|
s->flip_left = 1;
|
|
|
|
}
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
/* non blocking mode */
|
2012-11-04 20:23:13 +00:00
|
|
|
if (!is_output) {
|
|
|
|
if (fcntl(audio_fd, F_SETFL, O_NONBLOCK) < 0) {
|
2014-10-18 21:24:23 +00:00
|
|
|
av_log(s1, AV_LOG_WARNING, "%s: Could not enable non block mode (%s)\n", audio_device, av_err2str(AVERROR(errno)));
|
2012-11-04 20:23:13 +00:00
|
|
|
}
|
|
|
|
}
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2014-07-18 10:43:15 +00:00
|
|
|
s->frame_size = OSS_AUDIO_BLOCK_SIZE;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2014-07-18 21:56:16 +00:00
|
|
|
#define CHECK_IOCTL_ERROR(event) \
|
|
|
|
if (err < 0) { \
|
2014-10-18 21:24:23 +00:00
|
|
|
av_log(s1, AV_LOG_ERROR, #event ": %s\n", av_err2str(AVERROR(errno)));\
|
2014-07-18 21:56:16 +00:00
|
|
|
goto fail; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/* select format : favour native format
|
|
|
|
* We don't CHECK_IOCTL_ERROR here because even if failed OSS still may be
|
|
|
|
* usable. If OSS is not usable the SNDCTL_DSP_SETFMTS later is going to
|
2014-10-15 16:32:54 +00:00
|
|
|
* fail anyway. */
|
2001-09-24 23:27:06 +00:00
|
|
|
err = ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &tmp);
|
2014-07-31 19:01:07 +00:00
|
|
|
if (err < 0) {
|
2014-10-18 21:24:23 +00:00
|
|
|
av_log(s1, AV_LOG_WARNING, "SNDCTL_DSP_GETFMTS: %s\n", av_err2str(AVERROR(errno)));
|
2014-07-31 19:01:07 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2009-07-26 12:20:04 +00:00
|
|
|
#if HAVE_BIGENDIAN
|
2001-09-24 23:27:06 +00: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:
|
2012-08-05 09:11:04 +00:00
|
|
|
s->codec_id = AV_CODEC_ID_PCM_S16LE;
|
2001-09-24 23:27:06 +00:00
|
|
|
break;
|
|
|
|
case AFMT_S16_BE:
|
2012-08-05 09:11:04 +00:00
|
|
|
s->codec_id = AV_CODEC_ID_PCM_S16BE;
|
2001-09-24 23:27:06 +00:00
|
|
|
break;
|
|
|
|
default:
|
2009-01-20 08:01:32 +00:00
|
|
|
av_log(s1, AV_LOG_ERROR, "Soundcard does not support 16 bit sample format\n");
|
2001-09-24 23:27:06 +00:00
|
|
|
close(audio_fd);
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2001-09-24 23:27:06 +00:00
|
|
|
}
|
|
|
|
err=ioctl(audio_fd, SNDCTL_DSP_SETFMT, &tmp);
|
2014-07-18 21:56:16 +00:00
|
|
|
CHECK_IOCTL_ERROR(SNDCTL_DSP_SETFMTS)
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2001-09-24 23:27:06 +00:00
|
|
|
tmp = (s->channels == 2);
|
|
|
|
err = ioctl(audio_fd, SNDCTL_DSP_STEREO, &tmp);
|
2014-07-18 21:56:16 +00:00
|
|
|
CHECK_IOCTL_ERROR(SNDCTL_DSP_STEREO)
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2001-09-24 23:27:06 +00:00
|
|
|
tmp = s->sample_rate;
|
|
|
|
err = ioctl(audio_fd, SNDCTL_DSP_SPEED, &tmp);
|
2014-07-18 21:56:16 +00:00
|
|
|
CHECK_IOCTL_ERROR(SNDCTL_DSP_SPEED)
|
2001-09-24 23:27:06 +00:00
|
|
|
s->sample_rate = tmp; /* store real sample rate */
|
2001-07-22 14:18:56 +00:00
|
|
|
s->fd = audio_fd;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
fail:
|
|
|
|
close(audio_fd);
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2014-07-18 21:56:16 +00:00
|
|
|
#undef CHECK_IOCTL_ERROR
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2014-07-18 10:43:15 +00:00
|
|
|
int ff_oss_audio_close(OSSAudioData *s)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
close(s->fd);
|
2001-09-24 23:27:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|