]> git.sesse.net Git - vlc/blob - modules/access/oss.c
OSS: path from VLC core (or ASCII), need utf8_open()
[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_charset.h>
40
41 #include <ctype.h>
42 #include <fcntl.h>
43 #include <unistd.h>
44 #include <sys/ioctl.h>
45 #include <sys/mman.h>
46
47 #ifdef HAVE_SYS_SOUNDCARD_H
48 #  include <sys/soundcard.h>
49 #endif
50 #ifdef HAVE_SOUNDCARD_H
51 #  include <soundcard.h>
52 #endif
53
54 #include <poll.h>
55
56 /*****************************************************************************
57  * Module descriptior
58  *****************************************************************************/
59
60 static int  DemuxOpen ( vlc_object_t * );
61 static void DemuxClose( vlc_object_t * );
62
63
64 #define STEREO_TEXT N_( "Stereo" )
65 #define STEREO_LONGTEXT N_( \
66     "Capture the audio stream in stereo." )
67 #define SAMPLERATE_TEXT N_( "Samplerate" )
68 #define SAMPLERATE_LONGTEXT N_( \
69     "Samplerate of the captured audio stream, in Hz (eg: 11025, 22050, 44100, 48000)" )
70
71 #define CACHING_TEXT N_("Caching value in ms")
72 #define CACHING_LONGTEXT N_( \
73     "Caching value for OSS captures. This " \
74     "value should be set in milliseconds." )
75
76 #define OSS_DEFAULT "/dev/dsp"
77
78 #define CFG_PREFIX "oss-"
79
80 vlc_module_begin ()
81     set_shortname( N_("OSS") )
82     set_description( N_("OSS input") )
83     set_category( CAT_INPUT )
84     set_subcategory( SUBCAT_INPUT_ACCESS )
85
86     add_shortcut( "oss" )
87     set_capability( "access_demux", 10 )
88     set_callbacks( DemuxOpen, DemuxClose )
89
90     add_bool( CFG_PREFIX "stereo", true, NULL, STEREO_TEXT, STEREO_LONGTEXT,
91                 true )
92     add_integer( CFG_PREFIX "samplerate", 48000, NULL, SAMPLERATE_TEXT,
93                 SAMPLERATE_LONGTEXT, true )
94     add_integer( CFG_PREFIX "caching", DEFAULT_PTS_DELAY / 1000, NULL,
95                 CACHING_TEXT, CACHING_LONGTEXT, true )
96 vlc_module_end ()
97
98 /*****************************************************************************
99  * Access: local prototypes
100  *****************************************************************************/
101
102 static int DemuxControl( demux_t *, int, va_list );
103
104 static int Demux( demux_t * );
105
106 static block_t* GrabAudio( demux_t *p_demux );
107
108 static int OpenAudioDev( demux_t * );
109 static int OpenAudioDevOss( demux_t * );
110 static bool ProbeAudioDevOss( demux_t *, const char *psz_device );
111
112 struct buffer_t
113 {
114     void *  start;
115     size_t  length;
116 };
117
118 struct demux_sys_t
119 {
120     const char *psz_device;  /* OSS device from MRL */
121
122     int  i_fd;
123
124     /* Audio */
125     int i_cache;
126     unsigned int i_sample_rate;
127     bool b_stereo;
128     size_t i_max_frame_size;
129     block_t *p_block;
130     es_out_id_t *p_es;
131
132     int64_t i_next_demux_date; /* Used to handle oss:// as input-slave properly */
133 };
134
135 static int FindMainDevice( demux_t *p_demux )
136 {
137     msg_Dbg( p_demux, "opening device '%s'", p_demux->p_sys->psz_device );
138     if( ProbeAudioDevOss( p_demux, p_demux->p_sys->psz_device ) )
139     {
140         msg_Dbg( p_demux, "'%s' is an audio device", p_demux->p_sys->psz_device );
141         p_demux->p_sys->i_fd = OpenAudioDev( p_demux );
142     }
143
144     if( p_demux->p_sys->i_fd < 0 )
145         return VLC_EGENERIC;
146     return VLC_SUCCESS;
147 }
148
149 /*****************************************************************************
150  * DemuxOpen: opens oss device, access_demux callback
151  *****************************************************************************
152  *
153  * url: <oss device>::::
154  *
155  *****************************************************************************/
156 static int DemuxOpen( vlc_object_t *p_this )
157 {
158     demux_t     *p_demux = (demux_t*)p_this;
159     demux_sys_t *p_sys;
160
161     /* Only when selected */
162     if( *p_demux->psz_access == '\0' ) return VLC_EGENERIC;
163
164     /* Set up p_demux */
165     p_demux->pf_control = DemuxControl;
166     p_demux->pf_demux = Demux;
167     p_demux->info.i_update = 0;
168     p_demux->info.i_title = 0;
169     p_demux->info.i_seekpoint = 0;
170
171     p_demux->p_sys = p_sys = calloc( 1, sizeof( demux_sys_t ) );
172     if( p_sys == NULL ) return VLC_ENOMEM;
173
174     p_sys->i_sample_rate = var_CreateGetInteger( p_demux, CFG_PREFIX "samplerate" );
175     p_sys->b_stereo = var_CreateGetBool( p_demux, CFG_PREFIX "stereo" );
176     p_sys->i_cache = var_CreateGetInteger( p_demux, CFG_PREFIX "caching" );
177     p_sys->i_fd = -1;
178     p_sys->p_es = NULL;
179     p_sys->p_block = NULL;
180     p_sys->i_next_demux_date = -1;
181
182     if( p_demux->psz_path && *p_demux->psz_path )
183         p_sys->psz_device = p_demux->psz_path;
184     else
185         p_sys->psz_device = OSS_DEFAULT;
186
187     if( FindMainDevice( p_demux ) != VLC_SUCCESS )
188     {
189         DemuxClose( p_this );
190         return VLC_EGENERIC;
191     }
192
193     return VLC_SUCCESS;
194 }
195
196 /*****************************************************************************
197  * Close: close device, free resources
198  *****************************************************************************/
199 static void DemuxClose( vlc_object_t *p_this )
200 {
201     demux_t     *p_demux = (demux_t *)p_this;
202     demux_sys_t *p_sys   = p_demux->p_sys;
203
204     if( p_sys->i_fd >= 0 ) close( p_sys->i_fd );
205
206     if( p_sys->p_block ) block_Release( p_sys->p_block );
207     free( p_sys );
208 }
209
210 /*****************************************************************************
211  * DemuxControl:
212  *****************************************************************************/
213 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
214 {
215     demux_sys_t *p_sys = p_demux->p_sys;
216     bool *pb;
217     int64_t    *pi64;
218
219     switch( i_query )
220     {
221         /* Special for access_demux */
222         case DEMUX_CAN_PAUSE:
223         case DEMUX_CAN_SEEK:
224         case DEMUX_CAN_CONTROL_PACE:
225             pb = (bool*)va_arg( args, bool * );
226             *pb = false;
227             return VLC_SUCCESS;
228
229         case DEMUX_GET_PTS_DELAY:
230             pi64 = (int64_t*)va_arg( args, int64_t * );
231             *pi64 = (int64_t)p_sys->i_cache * 1000;
232             return VLC_SUCCESS;
233
234         case DEMUX_GET_TIME:
235             pi64 = (int64_t*)va_arg( args, int64_t * );
236             *pi64 = mdate();
237             return VLC_SUCCESS;
238
239         case DEMUX_SET_NEXT_DEMUX_TIME:
240             p_sys->i_next_demux_date = (int64_t)va_arg( args, int64_t );
241             return VLC_SUCCESS;
242
243         /* TODO implement others */
244         default:
245             return VLC_EGENERIC;
246     }
247
248     return VLC_EGENERIC;
249 }
250
251 /*****************************************************************************
252  * Demux: Processes the audio frame
253  *****************************************************************************/
254 static int Demux( demux_t *p_demux )
255 {
256     demux_sys_t *p_sys = p_demux->p_sys;
257
258     struct pollfd fd;
259     fd.fd = p_sys->i_fd;
260     fd.events = POLLIN|POLLPRI;
261     fd.revents = 0;
262
263     block_t *p_block = NULL;
264
265     do
266     {
267         if( p_block )
268         {
269             es_out_Send( p_demux->out, p_sys->p_es, p_block );
270             p_block = NULL;
271         }
272
273         /* Wait for data */
274         if( poll( &fd, 1, 10 ) ) /* Timeout after 0.01 seconds. Bigger delays are an issue when used with/as an input-slave since all the inputs run in the same thread. */
275         {
276             if( fd.revents & (POLLIN|POLLPRI) )
277             {
278                 p_block = GrabAudio( p_demux );
279                 if( p_block )
280                     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
281             }
282         }
283     } while( p_block && p_sys->i_next_demux_date > 0 &&
284              p_block->i_pts < p_sys->i_next_demux_date );
285
286     if( p_block )
287         es_out_Send( p_demux->out, p_sys->p_es, p_block );
288
289     return 1;
290 }
291
292 /*****************************************************************************
293  * GrabAudio: Grab an audio frame
294  *****************************************************************************/
295 static block_t* GrabAudio( demux_t *p_demux )
296 {
297     demux_sys_t *p_sys = p_demux->p_sys;
298     struct audio_buf_info buf_info;
299     int i_read = 0, i_correct;
300     block_t *p_block;
301
302     if( p_sys->p_block ) p_block = p_sys->p_block;
303     else p_block = block_New( p_demux, p_sys->i_max_frame_size );
304
305     if( !p_block )
306     {
307         msg_Warn( p_demux, "cannot get block" );
308         return 0;
309     }
310
311     p_sys->p_block = p_block;
312
313     i_read = read( p_sys->i_fd, p_block->p_buffer,
314                 p_sys->i_max_frame_size );
315
316     if( i_read <= 0 ) return 0;
317
318     p_block->i_buffer = i_read;
319     p_sys->p_block = 0;
320
321     /* Correct the date because of kernel buffering */
322     i_correct = i_read;
323     if( ioctl( p_sys->i_fd, SNDCTL_DSP_GETISPACE, &buf_info ) == 0 )
324     {
325         i_correct += buf_info.bytes;
326     }
327
328     /* Timestamp */
329     p_block->i_pts = p_block->i_dts =
330         mdate() - INT64_C(1000000) * (mtime_t)i_correct /
331         2 / ( p_sys->b_stereo ? 2 : 1) / p_sys->i_sample_rate;
332
333     return p_block;
334 }
335
336 /*****************************************************************************
337  * OpenAudioDev: open and set up the audio device and probe for capabilities
338  *****************************************************************************/
339 static int OpenAudioDevOss( demux_t *p_demux )
340 {
341     int i_fd;
342     int i_format;
343
344     i_fd = utf8_open( p_demux->p_sys->psz_device, O_RDONLY | O_NONBLOCK );
345
346     if( i_fd < 0 )
347     {
348         msg_Err( p_demux, "cannot open OSS audio device (%m)" );
349         goto adev_fail;
350     }
351
352     i_format = AFMT_S16_LE;
353     if( ioctl( i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
354         || i_format != AFMT_S16_LE )
355     {
356         msg_Err( p_demux,
357                  "cannot set audio format (16b little endian) (%m)" );
358         goto adev_fail;
359     }
360
361     if( ioctl( i_fd, SNDCTL_DSP_STEREO,
362                &p_demux->p_sys->b_stereo ) < 0 )
363     {
364         msg_Err( p_demux, "cannot set audio channels count (%m)" );
365         goto adev_fail;
366     }
367
368     if( ioctl( i_fd, SNDCTL_DSP_SPEED,
369                &p_demux->p_sys->i_sample_rate ) < 0 )
370     {
371         msg_Err( p_demux, "cannot set audio sample rate (%m)" );
372         goto adev_fail;
373     }
374
375     p_demux->p_sys->i_max_frame_size = 6 * 1024;
376
377     return i_fd;
378
379  adev_fail:
380
381     if( i_fd >= 0 ) close( i_fd );
382     return -1;
383 }
384
385 static int OpenAudioDev( demux_t *p_demux )
386 {
387     demux_sys_t *p_sys = p_demux->p_sys;
388     int i_fd = OpenAudioDevOss( p_demux );
389
390     if( i_fd < 0 )
391         return i_fd;
392
393     msg_Dbg( p_demux, "opened adev=`%s' %s %dHz",
394              p_sys->psz_device, p_sys->b_stereo ? "stereo" : "mono",
395              p_sys->i_sample_rate );
396
397     es_format_t fmt;
398     es_format_Init( &fmt, AUDIO_ES, VLC_CODEC_S16L );
399
400     fmt.audio.i_channels = p_sys->b_stereo ? 2 : 1;
401     fmt.audio.i_rate = p_sys->i_sample_rate;
402     fmt.audio.i_bitspersample = 16;
403     fmt.audio.i_blockalign = fmt.audio.i_channels * fmt.audio.i_bitspersample / 8;
404     fmt.i_bitrate = fmt.audio.i_channels * fmt.audio.i_rate * fmt.audio.i_bitspersample;
405
406     msg_Dbg( p_demux, "new audio es %d channels %dHz",
407              fmt.audio.i_channels, fmt.audio.i_rate );
408
409     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
410
411     return i_fd;
412 }
413
414 /*****************************************************************************
415  * ProbeAudioDev: probe audio for capabilities
416  *****************************************************************************/
417 static bool ProbeAudioDevOss( demux_t *p_demux, const char *psz_device )
418 {
419     int i_caps;
420     int i_fd = utf8_open( psz_device, O_RDONLY | O_NONBLOCK );
421
422     if( i_fd < 0 )
423     {
424         msg_Err( p_demux, "cannot open device %s for OSS audio (%m)", psz_device );
425         goto open_failed;
426     }
427
428     /* this will fail if the device is video */
429     if( ioctl( i_fd, SNDCTL_DSP_GETCAPS, &i_caps ) < 0 )
430     {
431         msg_Err( p_demux, "cannot get audio caps (%m)" );
432         goto open_failed;
433     }
434
435     if( i_fd >= 0 ) close( i_fd );
436
437     return true;
438
439 open_failed:
440     if( i_fd >= 0 ) close( i_fd );
441     return false;
442 }