]> git.sesse.net Git - vlc/blob - modules/access/oss.c
Split OSS access from v4l2.
[vlc] / modules / access / oss.c
1 /*****************************************************************************
2  * oss.c : OSS input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Benjamin Pracht <bigben at videolan dot org>
8  *          Richard Hosking <richard at hovis dot net>
9  *          Antoine Cellerier <dionoea at videolan d.t org>
10  *          Dennis Lou <dlou99 at yahoo dot com>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_access.h>
38 #include <vlc_demux.h>
39 #include <vlc_input.h>
40 #include <vlc_vout.h>
41
42 #include <ctype.h>
43 #include <fcntl.h>
44 #include <unistd.h>
45 #include <sys/ioctl.h>
46 #include <sys/mman.h>
47
48 #include <sys/soundcard.h>
49
50 #include <poll.h>
51
52 /*****************************************************************************
53  * Module descriptior
54  *****************************************************************************/
55
56 static int  DemuxOpen ( vlc_object_t * );
57 static void DemuxClose( vlc_object_t * );
58
59
60 #define STEREO_TEXT N_( "Stereo" )
61 #define STEREO_LONGTEXT N_( \
62     "Capture the audio stream in stereo." )
63 #define SAMPLERATE_TEXT N_( "Samplerate" )
64 #define SAMPLERATE_LONGTEXT N_( \
65     "Samplerate of the captured audio stream, in Hz (eg: 11025, 22050, 44100, 48000)" )
66
67 #define CACHING_TEXT N_("Caching value in ms")
68 #define CACHING_LONGTEXT N_( \
69     "Caching value for OSS captures. This " \
70     "value should be set in milliseconds." )
71
72 #define OSS_DEFAULT "/dev/dsp"
73
74 #define CFG_PREFIX "oss-"
75
76 vlc_module_begin ()
77     set_shortname( N_("OSS") )
78     set_description( N_("OSS input") )
79     set_category( CAT_INPUT )
80     set_subcategory( SUBCAT_INPUT_ACCESS )
81
82     add_shortcut( "oss" )
83     set_capability( "access_demux", 10 )
84     set_callbacks( DemuxOpen, DemuxClose )
85
86     add_bool( CFG_PREFIX "stereo", true, NULL, STEREO_TEXT, STEREO_LONGTEXT,
87                 true );
88     add_integer( CFG_PREFIX "samplerate", 48000, NULL, SAMPLERATE_TEXT,
89                 SAMPLERATE_LONGTEXT, true );
90     add_integer( CFG_PREFIX "caching", DEFAULT_PTS_DELAY / 1000, NULL,
91                 CACHING_TEXT, CACHING_LONGTEXT, true );
92 vlc_module_end ()
93
94 /*****************************************************************************
95  * Access: local prototypes
96  *****************************************************************************/
97
98 static int DemuxControl( demux_t *, int, va_list );
99
100 static int Demux( demux_t * );
101
102 static block_t* GrabAudio( demux_t *p_demux );
103
104 static int OpenAudioDev( demux_t * );
105 static int OpenAudioDevOss( demux_t * );
106 static bool ProbeAudioDevOss( demux_t *, const char *psz_device );
107
108 struct buffer_t
109 {
110     void *  start;
111     size_t  length;
112 };
113
114 struct demux_sys_t
115 {
116     const char *psz_device;  /* OSS device from MRL */
117
118     int  i_fd_audio;
119
120     /* Audio */
121     int i_pts;
122     unsigned int i_sample_rate;
123     bool b_stereo;
124     size_t i_audio_max_frame_size;
125     block_t *p_block_audio;
126     es_out_id_t *p_es_audio;
127 };
128
129 static int FindMainDevice( demux_t *p_demux )
130 {
131     msg_Dbg( p_demux, "opening device '%s'", p_demux->p_sys->psz_device );
132     if( ProbeAudioDevOss( p_demux, p_demux->p_sys->psz_device ) )
133     {
134         msg_Dbg( p_demux, "'%s' is an audio device", p_demux->p_sys->psz_device );
135         p_demux->p_sys->i_fd_audio = OpenAudioDev( p_demux );
136     }
137
138     if( p_demux->p_sys->i_fd_audio < 0 )
139         return VLC_EGENERIC;
140     return VLC_SUCCESS;
141 }
142
143 /*****************************************************************************
144  * DemuxOpen: opens oss device, access_demux callback
145  *****************************************************************************
146  *
147  * url: <oss device>::::
148  *
149  *****************************************************************************/
150 static int DemuxOpen( vlc_object_t *p_this )
151 {
152     demux_t     *p_demux = (demux_t*)p_this;
153     demux_sys_t *p_sys;
154
155     /* Only when selected */
156     if( *p_demux->psz_access == '\0' ) return VLC_EGENERIC;
157
158     /* Set up p_demux */
159     p_demux->pf_control = DemuxControl;
160     p_demux->pf_demux = Demux;
161     p_demux->info.i_update = 0;
162     p_demux->info.i_title = 0;
163     p_demux->info.i_seekpoint = 0;
164
165     p_demux->p_sys = p_sys = calloc( 1, sizeof( demux_sys_t ) );
166     if( p_sys == NULL ) return VLC_ENOMEM;
167
168     p_sys->i_sample_rate = var_CreateGetInteger( p_demux, CFG_PREFIX "samplerate" );
169     p_sys->b_stereo = var_CreateGetBool( p_demux, CFG_PREFIX "stereo" );
170     p_sys->i_pts = var_CreateGetInteger( p_demux, CFG_PREFIX "caching" );
171     p_sys->psz_device = NULL;
172     p_sys->i_fd_audio = -1;
173     p_sys->p_es_audio = 0;
174     p_sys->p_block_audio = 0;
175
176     if( p_demux->psz_path && *p_demux->psz_path )
177         p_sys->psz_device = p_demux->psz_path;
178     else
179         p_sys->psz_device = OSS_DEFAULT;
180     msg_Err( p_this, "Device is %s", p_sys->psz_device );
181
182     if( FindMainDevice( p_demux ) != VLC_SUCCESS )
183     {
184         DemuxClose( p_this );
185         return VLC_EGENERIC;
186     }
187
188     return VLC_SUCCESS;
189 }
190
191 /*****************************************************************************
192  * Close: close device, free resources
193  *****************************************************************************/
194 static void DemuxClose( vlc_object_t *p_this )
195 {
196     demux_t     *p_demux = (demux_t *)p_this;
197     demux_sys_t *p_sys   = p_demux->p_sys;
198
199     if( p_sys->i_fd_audio >= 0 ) close( p_sys->i_fd_audio );
200
201     if( p_sys->p_block_audio ) block_Release( p_sys->p_block_audio );
202     free( p_sys );
203 }
204
205 /*****************************************************************************
206  * DemuxControl:
207  *****************************************************************************/
208 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
209 {
210     demux_sys_t *p_sys = p_demux->p_sys;
211     bool *pb;
212     int64_t    *pi64;
213
214     switch( i_query )
215     {
216         /* Special for access_demux */
217         case DEMUX_CAN_PAUSE:
218         case DEMUX_CAN_SEEK:
219         case DEMUX_SET_PAUSE_STATE:
220         case DEMUX_CAN_CONTROL_PACE:
221             pb = (bool*)va_arg( args, bool * );
222             *pb = false;
223             return VLC_SUCCESS;
224
225         case DEMUX_GET_PTS_DELAY:
226             pi64 = (int64_t*)va_arg( args, int64_t * );
227             *pi64 = (int64_t)p_sys->i_pts * 1000;
228             return VLC_SUCCESS;
229
230         case DEMUX_GET_TIME:
231             pi64 = (int64_t*)va_arg( args, int64_t * );
232             *pi64 = mdate();
233             return VLC_SUCCESS;
234
235         /* TODO implement others */
236         default:
237             return VLC_EGENERIC;
238     }
239
240     return VLC_EGENERIC;
241 }
242
243 /*****************************************************************************
244  * Demux: Processes the audio frame
245  *****************************************************************************/
246 static int Demux( demux_t *p_demux )
247 {
248     demux_sys_t *p_sys = p_demux->p_sys;
249
250     struct pollfd fd;
251     fd.fd = p_sys->i_fd_audio;
252     fd.events = POLLIN|POLLPRI;
253     fd.revents = 0;
254
255     /* Wait for data */
256     if( poll( &fd, 1, 500 ) ) /* Timeout after 0.5 seconds since I don't know if pf_demux can be blocking. */
257     {
258         if( fd.revents & (POLLIN|POLLPRI) )
259         {
260             block_t *p_block = GrabAudio( p_demux );
261             if( p_block )
262             {
263                 es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
264                 es_out_Send( p_demux->out, p_sys->p_es_audio, p_block );
265             }
266         }
267     }
268
269     return 1;
270 }
271
272 /*****************************************************************************
273  * GrabAudio: Grab an audio frame
274  *****************************************************************************/
275 static block_t* GrabAudio( demux_t *p_demux )
276 {
277     demux_sys_t *p_sys = p_demux->p_sys;
278     struct audio_buf_info buf_info;
279     int i_read = 0, i_correct;
280     block_t *p_block;
281
282     if( p_sys->p_block_audio ) p_block = p_sys->p_block_audio;
283     else p_block = block_New( p_demux, p_sys->i_audio_max_frame_size );
284
285     if( !p_block )
286     {
287         msg_Warn( p_demux, "cannot get block" );
288         return 0;
289     }
290
291     p_sys->p_block_audio = p_block;
292
293     i_read = read( p_sys->i_fd_audio, p_block->p_buffer,
294                 p_sys->i_audio_max_frame_size );
295
296     if( i_read <= 0 ) return 0;
297
298     p_block->i_buffer = i_read;
299     p_sys->p_block_audio = 0;
300
301     /* Correct the date because of kernel buffering */
302     i_correct = i_read;
303     if( ioctl( p_sys->i_fd_audio, SNDCTL_DSP_GETISPACE, &buf_info ) == 0 )
304     {
305         i_correct += buf_info.bytes;
306     }
307
308     /* Timestamp */
309     p_block->i_pts = p_block->i_dts =
310         mdate() - INT64_C(1000000) * (mtime_t)i_correct /
311         2 / ( p_sys->b_stereo ? 2 : 1) / p_sys->i_sample_rate;
312
313     return p_block;
314 }
315
316 /*****************************************************************************
317  * OpenAudioDev: open and set up the audio device and probe for capabilities
318  *****************************************************************************/
319 static int OpenAudioDevOss( demux_t *p_demux )
320 {
321     int i_fd;
322     int i_format;
323
324     i_fd = open( p_demux->p_sys->psz_device, O_RDONLY | O_NONBLOCK );
325
326     if( i_fd < 0 )
327     {
328         msg_Err( p_demux, "cannot open OSS audio device (%m)" );
329         goto adev_fail;
330     }
331
332     i_format = AFMT_S16_LE;
333     if( ioctl( i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
334         || i_format != AFMT_S16_LE )
335     {
336         msg_Err( p_demux,
337                  "cannot set audio format (16b little endian) (%m)" );
338         goto adev_fail;
339     }
340
341     if( ioctl( i_fd, SNDCTL_DSP_STEREO,
342                &p_demux->p_sys->b_stereo ) < 0 )
343     {
344         msg_Err( p_demux, "cannot set audio channels count (%m)" );
345         goto adev_fail;
346     }
347
348     if( ioctl( i_fd, SNDCTL_DSP_SPEED,
349                &p_demux->p_sys->i_sample_rate ) < 0 )
350     {
351         msg_Err( p_demux, "cannot set audio sample rate (%m)" );
352         goto adev_fail;
353     }
354
355     p_demux->p_sys->i_audio_max_frame_size = 6 * 1024;
356
357     return i_fd;
358
359  adev_fail:
360
361     if( i_fd >= 0 ) close( i_fd );
362     return -1;
363 }
364
365 static int OpenAudioDev( demux_t *p_demux )
366 {
367     demux_sys_t *p_sys = p_demux->p_sys;
368     int i_fd = OpenAudioDevOss( p_demux );
369
370     if( i_fd < 0 )
371         return i_fd;
372
373     msg_Dbg( p_demux, "opened adev=`%s' %s %dHz",
374              p_sys->psz_device, p_sys->b_stereo ? "stereo" : "mono",
375              p_sys->i_sample_rate );
376
377     es_format_t fmt;
378     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC('a','r','a','w') );
379
380     fmt.audio.i_channels = p_sys->b_stereo ? 2 : 1;
381     fmt.audio.i_rate = p_sys->i_sample_rate;
382     fmt.audio.i_bitspersample = 16;
383     fmt.audio.i_blockalign = fmt.audio.i_channels * fmt.audio.i_bitspersample / 8;
384     fmt.i_bitrate = fmt.audio.i_channels * fmt.audio.i_rate * fmt.audio.i_bitspersample;
385
386     msg_Dbg( p_demux, "new audio es %d channels %dHz",
387              fmt.audio.i_channels, fmt.audio.i_rate );
388
389     p_sys->p_es_audio = es_out_Add( p_demux->out, &fmt );
390
391     return i_fd;
392 }
393
394 /*****************************************************************************
395  * ProbeAudioDev: probe audio for capabilities
396  *****************************************************************************/
397 static bool ProbeAudioDevOss( demux_t *p_demux, const char *psz_device )
398 {
399     int i_caps;
400     int i_fd = open( psz_device, O_RDONLY | O_NONBLOCK );
401
402     if( i_fd < 0 )
403     {
404         msg_Err( p_demux, "cannot open device %s for OSS audio (%m)", psz_device );
405         goto open_failed;
406     }
407
408     /* this will fail if the device is video */
409     if( ioctl( i_fd, SNDCTL_DSP_GETCAPS, &i_caps ) < 0 )
410     {
411         msg_Err( p_demux, "cannot get audio caps (%m)" );
412         goto open_failed;
413     }
414
415     if( i_fd >= 0 ) close( i_fd );
416
417     return true;
418
419 open_failed:
420     if( i_fd >= 0 ) close( i_fd );
421     return false;
422 }