]> git.sesse.net Git - ffmpeg/blob - libavdevice/oss_audio.c
Update copyright year for ac3enc_opts_template.c.
[ffmpeg] / libavdevice / oss_audio.c
1 /*
2  * Linux audio play and grab interface
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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.
11  *
12  * Libav 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.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <stdint.h>
26 #include <string.h>
27 #include <errno.h>
28 #if HAVE_SOUNDCARD_H
29 #include <soundcard.h>
30 #else
31 #include <sys/soundcard.h>
32 #endif
33 #include <unistd.h>
34 #include <fcntl.h>
35 #include <sys/ioctl.h>
36 #include <sys/time.h>
37 #include <sys/select.h>
38
39 #include "libavutil/log.h"
40 #include "libavutil/opt.h"
41 #include "libavcodec/avcodec.h"
42 #include "libavformat/avformat.h"
43
44 #define AUDIO_BLOCK_SIZE 4096
45
46 typedef struct {
47     AVClass *class;
48     int fd;
49     int sample_rate;
50     int channels;
51     int frame_size; /* in bytes ! */
52     enum CodecID codec_id;
53     unsigned int flip_left : 1;
54     uint8_t buffer[AUDIO_BLOCK_SIZE];
55     int buffer_ptr;
56 } AudioData;
57
58 static int audio_open(AVFormatContext *s1, int is_output, const char *audio_device)
59 {
60     AudioData *s = s1->priv_data;
61     int audio_fd;
62     int tmp, err;
63     char *flip = getenv("AUDIO_FLIP_LEFT");
64
65     if (is_output)
66         audio_fd = open(audio_device, O_WRONLY);
67     else
68         audio_fd = open(audio_device, O_RDONLY);
69     if (audio_fd < 0) {
70         av_log(s1, AV_LOG_ERROR, "%s: %s\n", audio_device, strerror(errno));
71         return AVERROR(EIO);
72     }
73
74     if (flip && *flip == '1') {
75         s->flip_left = 1;
76     }
77
78     /* non blocking mode */
79     if (!is_output)
80         fcntl(audio_fd, F_SETFL, O_NONBLOCK);
81
82     s->frame_size = AUDIO_BLOCK_SIZE;
83 #if 0
84     tmp = (NB_FRAGMENTS << 16) | FRAGMENT_BITS;
85     err = ioctl(audio_fd, SNDCTL_DSP_SETFRAGMENT, &tmp);
86     if (err < 0) {
87         perror("SNDCTL_DSP_SETFRAGMENT");
88     }
89 #endif
90
91     /* select format : favour native format */
92     err = ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &tmp);
93
94 #if HAVE_BIGENDIAN
95     if (tmp & AFMT_S16_BE) {
96         tmp = AFMT_S16_BE;
97     } else if (tmp & AFMT_S16_LE) {
98         tmp = AFMT_S16_LE;
99     } else {
100         tmp = 0;
101     }
102 #else
103     if (tmp & AFMT_S16_LE) {
104         tmp = AFMT_S16_LE;
105     } else if (tmp & AFMT_S16_BE) {
106         tmp = AFMT_S16_BE;
107     } else {
108         tmp = 0;
109     }
110 #endif
111
112     switch(tmp) {
113     case AFMT_S16_LE:
114         s->codec_id = CODEC_ID_PCM_S16LE;
115         break;
116     case AFMT_S16_BE:
117         s->codec_id = CODEC_ID_PCM_S16BE;
118         break;
119     default:
120         av_log(s1, AV_LOG_ERROR, "Soundcard does not support 16 bit sample format\n");
121         close(audio_fd);
122         return AVERROR(EIO);
123     }
124     err=ioctl(audio_fd, SNDCTL_DSP_SETFMT, &tmp);
125     if (err < 0) {
126         av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_SETFMT: %s\n", strerror(errno));
127         goto fail;
128     }
129
130     tmp = (s->channels == 2);
131     err = ioctl(audio_fd, SNDCTL_DSP_STEREO, &tmp);
132     if (err < 0) {
133         av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_STEREO: %s\n", strerror(errno));
134         goto fail;
135     }
136
137     tmp = s->sample_rate;
138     err = ioctl(audio_fd, SNDCTL_DSP_SPEED, &tmp);
139     if (err < 0) {
140         av_log(s1, AV_LOG_ERROR, "SNDCTL_DSP_SPEED: %s\n", strerror(errno));
141         goto fail;
142     }
143     s->sample_rate = tmp; /* store real sample rate */
144     s->fd = audio_fd;
145
146     return 0;
147  fail:
148     close(audio_fd);
149     return AVERROR(EIO);
150 }
151
152 static int audio_close(AudioData *s)
153 {
154     close(s->fd);
155     return 0;
156 }
157
158 /* sound output support */
159 static int audio_write_header(AVFormatContext *s1)
160 {
161     AudioData *s = s1->priv_data;
162     AVStream *st;
163     int ret;
164
165     st = s1->streams[0];
166     s->sample_rate = st->codec->sample_rate;
167     s->channels = st->codec->channels;
168     ret = audio_open(s1, 1, s1->filename);
169     if (ret < 0) {
170         return AVERROR(EIO);
171     } else {
172         return 0;
173     }
174 }
175
176 static int audio_write_packet(AVFormatContext *s1, AVPacket *pkt)
177 {
178     AudioData *s = s1->priv_data;
179     int len, ret;
180     int size= pkt->size;
181     uint8_t *buf= pkt->data;
182
183     while (size > 0) {
184         len = FFMIN(AUDIO_BLOCK_SIZE - s->buffer_ptr, size);
185         memcpy(s->buffer + s->buffer_ptr, buf, len);
186         s->buffer_ptr += len;
187         if (s->buffer_ptr >= AUDIO_BLOCK_SIZE) {
188             for(;;) {
189                 ret = write(s->fd, s->buffer, AUDIO_BLOCK_SIZE);
190                 if (ret > 0)
191                     break;
192                 if (ret < 0 && (errno != EAGAIN && errno != EINTR))
193                     return AVERROR(EIO);
194             }
195             s->buffer_ptr = 0;
196         }
197         buf += len;
198         size -= len;
199     }
200     return 0;
201 }
202
203 static int audio_write_trailer(AVFormatContext *s1)
204 {
205     AudioData *s = s1->priv_data;
206
207     audio_close(s);
208     return 0;
209 }
210
211 /* grab support */
212
213 static int audio_read_header(AVFormatContext *s1, AVFormatParameters *ap)
214 {
215     AudioData *s = s1->priv_data;
216     AVStream *st;
217     int ret;
218
219 #if FF_API_FORMAT_PARAMETERS
220     if (ap->sample_rate > 0)
221         s->sample_rate = ap->sample_rate;
222     if (ap->channels > 0)
223         s->channels = ap->channels;
224 #endif
225
226     st = av_new_stream(s1, 0);
227     if (!st) {
228         return AVERROR(ENOMEM);
229     }
230
231     ret = audio_open(s1, 0, s1->filename);
232     if (ret < 0) {
233         return AVERROR(EIO);
234     }
235
236     /* take real parameters */
237     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
238     st->codec->codec_id = s->codec_id;
239     st->codec->sample_rate = s->sample_rate;
240     st->codec->channels = s->channels;
241
242     av_set_pts_info(st, 64, 1, 1000000);  /* 64 bits pts in us */
243     return 0;
244 }
245
246 static int audio_read_packet(AVFormatContext *s1, AVPacket *pkt)
247 {
248     AudioData *s = s1->priv_data;
249     int ret, bdelay;
250     int64_t cur_time;
251     struct audio_buf_info abufi;
252
253     if ((ret=av_new_packet(pkt, s->frame_size)) < 0)
254         return ret;
255
256     ret = read(s->fd, pkt->data, pkt->size);
257     if (ret <= 0){
258         av_free_packet(pkt);
259         pkt->size = 0;
260         if (ret<0)  return AVERROR(errno);
261         else        return AVERROR_EOF;
262     }
263     pkt->size = ret;
264
265     /* compute pts of the start of the packet */
266     cur_time = av_gettime();
267     bdelay = ret;
268     if (ioctl(s->fd, SNDCTL_DSP_GETISPACE, &abufi) == 0) {
269         bdelay += abufi.bytes;
270     }
271     /* subtract time represented by the number of bytes in the audio fifo */
272     cur_time -= (bdelay * 1000000LL) / (s->sample_rate * s->channels);
273
274     /* convert to wanted units */
275     pkt->pts = cur_time;
276
277     if (s->flip_left && s->channels == 2) {
278         int i;
279         short *p = (short *) pkt->data;
280
281         for (i = 0; i < ret; i += 4) {
282             *p = ~*p;
283             p += 2;
284         }
285     }
286     return 0;
287 }
288
289 static int audio_read_close(AVFormatContext *s1)
290 {
291     AudioData *s = s1->priv_data;
292
293     audio_close(s);
294     return 0;
295 }
296
297 #if CONFIG_OSS_INDEV
298 static const AVOption options[] = {
299     { "sample_rate", "", offsetof(AudioData, sample_rate), FF_OPT_TYPE_INT, {.dbl = 48000}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
300     { "channels",    "", offsetof(AudioData, channels),    FF_OPT_TYPE_INT, {.dbl = 2},     1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
301     { NULL },
302 };
303
304 static const AVClass oss_demuxer_class = {
305     .class_name     = "OSS demuxer",
306     .item_name      = av_default_item_name,
307     .option         = options,
308     .version        = LIBAVUTIL_VERSION_INT,
309 };
310
311 AVInputFormat ff_oss_demuxer = {
312     "oss",
313     NULL_IF_CONFIG_SMALL("Open Sound System capture"),
314     sizeof(AudioData),
315     NULL,
316     audio_read_header,
317     audio_read_packet,
318     audio_read_close,
319     .flags = AVFMT_NOFILE,
320     .priv_class = &oss_demuxer_class,
321 };
322 #endif
323
324 #if CONFIG_OSS_OUTDEV
325 AVOutputFormat ff_oss_muxer = {
326     "oss",
327     NULL_IF_CONFIG_SMALL("Open Sound System playback"),
328     "",
329     "",
330     sizeof(AudioData),
331     /* XXX: we make the assumption that the soundcard accepts this format */
332     /* XXX: find better solution with "preinit" method, needed also in
333        other formats */
334     AV_NE(CODEC_ID_PCM_S16BE, CODEC_ID_PCM_S16LE),
335     CODEC_ID_NONE,
336     audio_write_header,
337     audio_write_packet,
338     audio_write_trailer,
339     .flags = AVFMT_NOFILE,
340 };
341 #endif