oss.c 23.4 KB
Newer Older
1
/*****************************************************************************
2
 * oss.c : OSS /dev/dsp module for vlc
3
 *****************************************************************************
4
 * Copyright (C) 2000-2002 the VideoLAN team
5
 * $Id$
6 7
 *
 * Authors: Michel Kaempf <maxx@via.ecp.fr>
8
 *          Sam Hocevar <sam@zoy.org>
9
 *          Christophe Massiot <massiot@via.ecp.fr>
10 11 12 13 14
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
15
 *
16 17 18 19 20 21 22
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
Antoine Cellerier's avatar
Antoine Cellerier committed
23
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24 25 26 27 28 29
 *****************************************************************************/

/*****************************************************************************
 * Preamble
 *****************************************************************************/

30 31 32 33
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

34 35 36 37
#include <fcntl.h>                                       /* open(), O_WRONLY */
#include <sys/ioctl.h>                                            /* ioctl() */
#include <unistd.h>                                      /* write(), close() */

38
#include <vlc_common.h>
39
#include <vlc_plugin.h>
40
#include <vlc_fs.h>
41

Clément Stenac's avatar
Clément Stenac committed
42
#include <vlc_aout.h>
43 44 45 46 47 48 49 50 51

/* SNDCTL_DSP_RESET, SNDCTL_DSP_SETFMT, SNDCTL_DSP_STEREO, SNDCTL_DSP_SPEED,
 * SNDCTL_DSP_GETOSPACE */
#ifdef HAVE_SOUNDCARD_H
#   include <soundcard.h>
#elif defined( HAVE_SYS_SOUNDCARD_H )
#   include <sys/soundcard.h>
#endif

52 53
/* Patches for ignorant OSS versions */
#ifndef AFMT_AC3
54
#   define AFMT_AC3     0x00000400        /* Dolby Digital AC3 */
55 56 57 58 59 60 61 62 63 64
#endif

#ifndef AFMT_S16_NE
#   ifdef WORDS_BIGENDIAN
#       define AFMT_S16_NE AFMT_S16_BE
#   else
#       define AFMT_S16_NE AFMT_S16_LE
#   endif
#endif

65
/*****************************************************************************
66
 * aout_sys_t: OSS audio output method descriptor
67 68
 *****************************************************************************
 * This structure is part of the audio output thread descriptor.
69
 * It describes the DSP specific properties of an audio device.
70 71 72
 *****************************************************************************/
struct aout_sys_t
{
Gildas Bazin's avatar
 
Gildas Bazin committed
73 74
    int i_fd;
    int b_workaround_buggy_driver;
Gildas Bazin's avatar
 
Gildas Bazin committed
75 76
    int i_fragstotal;
    mtime_t max_buffer_duration;
77 78
};

79
/* This must be a power of 2. */
80
#define FRAME_SIZE 1024
81
#define FRAME_COUNT 32
82

83 84 85 86 87 88
/*****************************************************************************
 * Local prototypes
 *****************************************************************************/
static int  Open         ( vlc_object_t * );
static void Close        ( vlc_object_t * );

89
static void Play         ( aout_instance_t * );
90
static void* OSSThread   ( vlc_object_t * );
91

Gildas Bazin's avatar
 
Gildas Bazin committed
92 93
static mtime_t BufferDuration( aout_instance_t * p_aout );

94 95 96
/*****************************************************************************
 * Module descriptor
 *****************************************************************************/
Christophe Massiot's avatar
Christophe Massiot committed
97
#define BUGGY_TEXT N_("Try to work around buggy OSS drivers")
Gildas Bazin's avatar
 
Gildas Bazin committed
98 99 100 101 102
#define BUGGY_LONGTEXT N_( \
    "Some buggy OSS drivers just don't like when their internal buffers " \
    "are completely filled (the sound gets heavily hashed). If you have one " \
    "of these drivers, then you need to enable this option." )

103 104 105
vlc_module_begin ()
    set_shortname( "OSS" )
    set_description( N_("UNIX OSS audio output") )
Gildas Bazin's avatar
 
Gildas Bazin committed
106

107 108
    set_category( CAT_AUDIO )
    set_subcategory( SUBCAT_AUDIO_AOUT )
109
    add_loadfile( "oss-audio-device", "/dev/dsp",
110
                  N_("OSS DSP device"), NULL, false )
111
        add_deprecated_alias( "dspdev" )   /* deprecated since 0.9.3 */
112
    add_bool( "oss-buggy", false, BUGGY_TEXT, BUGGY_LONGTEXT, true )
Gildas Bazin's avatar
 
Gildas Bazin committed
113

114 115 116 117
    set_capability( "audio output", 100 )
    add_shortcut( "oss" )
    set_callbacks( Open, Close )
vlc_module_end ()
118

119 120 121 122 123 124
/*****************************************************************************
 * Probe: probe the audio device for available formats and channels
 *****************************************************************************/
static void Probe( aout_instance_t * p_aout )
{
    struct aout_sys_t * p_sys = p_aout->output.p_sys;
Gildas Bazin's avatar
 
Gildas Bazin committed
125
    vlc_value_t val, text;
126 127
    int i_format, i_nb_channels;

Gildas Bazin's avatar
 
Gildas Bazin committed
128
    var_Create( p_aout, "audio-device", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
129
    text.psz_string = _("Audio Device");
Gildas Bazin's avatar
 
Gildas Bazin committed
130
    var_Change( p_aout, "audio-device", VLC_VAR_SETTEXT, &text, NULL );
131

Gildas Bazin's avatar
 
Gildas Bazin committed
132
    /* Test for multi-channel. */
133 134 135 136 137 138
#ifdef SNDCTL_DSP_GETCHANNELMASK
    if ( aout_FormatNbChannels( &p_aout->output.output ) > 2 )
    {
        /* Check that the device supports this. */

        int i_chanmask;
Gildas Bazin's avatar
 
Gildas Bazin committed
139 140 141 142 143 144 145 146 147 148 149

        /* Reset all. */
        i_format = AFMT_S16_NE;
        if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
            ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
        {
            msg_Err( p_aout, "cannot reset OSS audio device" );
            var_Destroy( p_aout, "audio-device" );
            return;
        }

150 151 152 153 154
        if ( ioctl( p_sys->i_fd, SNDCTL_DSP_GETCHANNELMASK,
                    &i_chanmask ) == 0 )
        {
            if ( !(i_chanmask & DSP_BIND_FRONT) )
            {
155
                msg_Err( p_aout, "no front channels! (%x)",
156 157 158 159 160 161 162 163 164 165
                         i_chanmask );
                return;
            }

            if ( (i_chanmask & (DSP_BIND_SURR | DSP_BIND_CENTER_LFE))
                  && (p_aout->output.output.i_physical_channels ==
                       (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
                         | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
                         | AOUT_CHAN_LFE)) )
            {
Gildas Bazin's avatar
 
Gildas Bazin committed
166
                val.i_int = AOUT_VAR_5_1;
167
                text.psz_string = (char*) "5.1";
Gildas Bazin's avatar
 
Gildas Bazin committed
168 169
                var_Change( p_aout, "audio-device",
                            VLC_VAR_ADDCHOICE, &val, &text );
170 171 172 173 174 175 176
            }

            if ( (i_chanmask & DSP_BIND_SURR)
                  && (p_aout->output.output.i_physical_channels &
                       (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
                         | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT)) )
            {
Gildas Bazin's avatar
 
Gildas Bazin committed
177
                val.i_int = AOUT_VAR_2F2R;
178
                text.psz_string = _("2 Front 2 Rear");
Gildas Bazin's avatar
 
Gildas Bazin committed
179 180
                var_Change( p_aout, "audio-device",
                            VLC_VAR_ADDCHOICE, &val, &text );
181 182 183 184 185
            }
        }
    }
#endif

Gildas Bazin's avatar
 
Gildas Bazin committed
186 187 188 189 190 191 192 193 194 195
    /* Reset all. */
    i_format = AFMT_S16_NE;
    if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
        ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
    {
        msg_Err( p_aout, "cannot reset OSS audio device" );
        var_Destroy( p_aout, "audio-device" );
        return;
    }

196 197 198 199 200
    /* Test for stereo. */
    i_nb_channels = 2;
    if( ioctl( p_sys->i_fd, SNDCTL_DSP_CHANNELS, &i_nb_channels ) >= 0
         && i_nb_channels == 2 )
    {
Gildas Bazin's avatar
 
Gildas Bazin committed
201
        val.i_int = AOUT_VAR_STEREO;
202
        text.psz_string = _("Stereo");
Gildas Bazin's avatar
 
Gildas Bazin committed
203
        var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
204 205 206 207 208 209 210 211 212 213 214 215 216 217
    }

    /* Reset all. */
    i_format = AFMT_S16_NE;
    if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
        ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
    {
        msg_Err( p_aout, "cannot reset OSS audio device" );
        var_Destroy( p_aout, "audio-device" );
        return;
    }

    /* Test for mono. */
    i_nb_channels = 1;
218
    if( ioctl( p_sys->i_fd, SNDCTL_DSP_CHANNELS, &i_nb_channels ) >= 0
219 220
         && i_nb_channels == 1 )
    {
Gildas Bazin's avatar
 
Gildas Bazin committed
221
        val.i_int = AOUT_VAR_MONO;
222
        text.psz_string = _("Mono");
Gildas Bazin's avatar
 
Gildas Bazin committed
223
        var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
224 225 226 227
        if ( p_aout->output.output.i_physical_channels == AOUT_CHAN_CENTER )
        {
            var_Set( p_aout, "audio-device", val );
        }
228
    }
229

Gildas Bazin's avatar
 
Gildas Bazin committed
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
    if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 )
    {
        msg_Err( p_aout, "cannot reset OSS audio device" );
        var_Destroy( p_aout, "audio-device" );
        return;
    }

    /* Test for spdif. */
    if ( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
    {
        i_format = AFMT_AC3;

        if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) >= 0
             && i_format == AFMT_AC3 )
        {
Gildas Bazin's avatar
 
Gildas Bazin committed
245
            val.i_int = AOUT_VAR_SPDIF;
246
            text.psz_string = _("A/52 over S/PDIF");
Gildas Bazin's avatar
 
Gildas Bazin committed
247 248
            var_Change( p_aout, "audio-device",
                        VLC_VAR_ADDCHOICE, &val, &text );
249
            if( var_InheritBool( p_aout, "spdif" ) )
Gildas Bazin's avatar
 
Gildas Bazin committed
250 251
                var_Set( p_aout, "audio-device", val );
        }
252
        else if( var_InheritBool( p_aout, "spdif" ) )
253
        {
254
            msg_Warn( p_aout, "S/PDIF not supported by card" );
255
        }
256
    }
257 258 259

    var_AddCallback( p_aout, "audio-device", aout_ChannelsRestart,
                     NULL );
260 261
}

262
/*****************************************************************************
263
 * Open: open the audio device (the digital sound processor)
264
 *****************************************************************************
265
 * This function opens the DSP as a usual non-blocking write-only file, and
266 267 268 269
 * modifies the p_aout->p_sys->i_fd with the file's descriptor.
 *****************************************************************************/
static int Open( vlc_object_t *p_this )
{
270 271 272
    aout_instance_t * p_aout = (aout_instance_t *)p_this;
    struct aout_sys_t * p_sys;
    char * psz_device;
273
    vlc_value_t val;
274 275

    /* Allocate structure */
276 277
    p_aout->output.p_sys = p_sys = malloc( sizeof( aout_sys_t ) );
    if( p_sys == NULL )
278
        return VLC_ENOMEM;
279

280
    /* Get device name */
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
281
    if( (psz_device = var_InheritString( p_aout, "oss-audio-device" )) == NULL )
282
    {
283
        msg_Err( p_aout, "no audio device specified (maybe /dev/dsp?)" );
284
        free( p_sys );
285
        return VLC_EGENERIC;
286 287
    }

288 289 290 291 292
    /* Open the sound device in non-blocking mode, because ALSA's OSS
     * emulation and some broken OSS drivers would make a blocking call
     * wait forever until the device is available. Since this breaks the
     * OSS spec, we immediately put it back to blocking mode if the
     * operation was successful. */
293
    p_sys->i_fd = vlc_open( psz_device, O_WRONLY | O_NDELAY );
Gildas Bazin's avatar
 
Gildas Bazin committed
294
    if( p_sys->i_fd < 0 )
295
    {
296
        msg_Err( p_aout, "cannot open audio device (%s)", psz_device );
Rémi Duraffort's avatar
Rémi Duraffort committed
297
        free( psz_device );
298
        free( p_sys );
299
        return VLC_EGENERIC;
300
    }
301 302 303 304 305

    /* if the opening was ok, put the device back in blocking mode */
    fcntl( p_sys->i_fd, F_SETFL,
            fcntl( p_sys->i_fd, F_GETFL ) &~ FNDELAY );

Christophe Massiot's avatar
Christophe Massiot committed
306
    free( psz_device );
307

308
    p_aout->output.pf_play = Play;
309

Gildas Bazin's avatar
 
Gildas Bazin committed
310
    if ( var_Type( p_aout, "audio-device" ) == 0 )
311 312 313 314 315 316 317
    {
        Probe( p_aout );
    }

    if ( var_Get( p_aout, "audio-device", &val ) < 0 )
    {
        /* Probe() has failed. */
318
        close( p_sys->i_fd );
319 320 321 322
        free( p_sys );
        return VLC_EGENERIC;
    }

Gildas Bazin's avatar
 
Gildas Bazin committed
323
    if ( val.i_int == AOUT_VAR_SPDIF )
324
    {
325
        p_aout->output.output.i_format = VLC_CODEC_SPDIFL;
326
    }
Gildas Bazin's avatar
 
Gildas Bazin committed
327
    else if ( val.i_int == AOUT_VAR_5_1 )
328
    {
329
        p_aout->output.output.i_format = VLC_CODEC_S16N;
330 331
        p_aout->output.output.i_physical_channels
            = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
332
               | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
333 334
               | AOUT_CHAN_LFE;
    }
Gildas Bazin's avatar
 
Gildas Bazin committed
335
    else if ( val.i_int == AOUT_VAR_2F2R )
336
    {
337
        p_aout->output.output.i_format = VLC_CODEC_S16N;
338 339
        p_aout->output.output.i_physical_channels
            = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
340
               | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
341
    }
Gildas Bazin's avatar
 
Gildas Bazin committed
342
    else if ( val.i_int == AOUT_VAR_STEREO )
343
    {
344
        p_aout->output.output.i_format = VLC_CODEC_S16N;
345 346 347
        p_aout->output.output.i_physical_channels
            = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
    }
Gildas Bazin's avatar
 
Gildas Bazin committed
348
    else if ( val.i_int == AOUT_VAR_MONO )
349
    {
350
        p_aout->output.output.i_format = VLC_CODEC_S16N;
351 352
        p_aout->output.output.i_physical_channels = AOUT_CHAN_CENTER;
    }
353 354 355
    else
    {
        /* This should not happen ! */
356 357
        msg_Err( p_aout, "internal: can't find audio-device (%"PRId64")",
                 val.i_int );
358
        close( p_sys->i_fd );
359 360 361
        free( p_sys );
        return VLC_EGENERIC;
    }
362

363
    var_SetBool( p_aout, "intf-change", true );
364

365
    /* Reset the DSP device */
366
    if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 )
367
    {
368
        msg_Err( p_aout, "cannot reset OSS audio device" );
369 370
        close( p_sys->i_fd );
        free( p_sys );
371 372
        return VLC_EGENERIC;
    }
373

374
    /* Set the output format */
375
    if ( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
376
    {
377
        int i_format = AFMT_AC3;
378

379 380 381
        if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
             || i_format != AFMT_AC3 )
        {
382 383 384 385
            msg_Err( p_aout, "cannot reset OSS audio device" );
            close( p_sys->i_fd );
            free( p_sys );
            return VLC_EGENERIC;
386 387
        }

388
        p_aout->output.output.i_format = VLC_CODEC_SPDIFL;
389 390 391 392 393
        p_aout->output.i_nb_samples = A52_FRAME_NB;
        p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
        p_aout->output.output.i_frame_length = A52_FRAME_NB;

        aout_VolumeNoneInit( p_aout );
394
    }
395 396

    if ( !AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
397
    {
398 399 400 401
        unsigned int i_format = AFMT_S16_NE;
        unsigned int i_frame_size, i_fragments;
        unsigned int i_rate;
        unsigned int i_nb_channels;
Gildas Bazin's avatar
 
Gildas Bazin committed
402
        audio_buf_info audio_buf;
403 404 405 406 407 408 409 410 411 412 413 414

        if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
        {
            msg_Err( p_aout, "cannot set audio output format" );
            close( p_sys->i_fd );
            free( p_sys );
            return VLC_EGENERIC;
        }

        switch ( i_format )
        {
        case AFMT_U8:
415
            p_aout->output.output.i_format = VLC_CODEC_U8;
416 417
            break;
        case AFMT_S8:
418
            p_aout->output.output.i_format = VLC_CODEC_S8;
419 420
            break;
        case AFMT_U16_LE:
421
            p_aout->output.output.i_format = VLC_CODEC_U16L;
422 423
            break;
        case AFMT_S16_LE:
424
            p_aout->output.output.i_format = VLC_CODEC_S16L;
425 426
            break;
        case AFMT_U16_BE:
427
            p_aout->output.output.i_format = VLC_CODEC_U16B;
428 429
            break;
        case AFMT_S16_BE:
430
            p_aout->output.output.i_format = VLC_CODEC_S16B;
431 432 433 434 435 436 437 438 439 440
            break;
        default:
            msg_Err( p_aout, "OSS fell back to an unknown format (%d)",
                     i_format );
            close( p_sys->i_fd );
            free( p_sys );
            return VLC_EGENERIC;
        }

        i_nb_channels = aout_FormatNbChannels( &p_aout->output.output );
441

442
        /* Set the number of channels */
443 444
        if( ioctl( p_sys->i_fd, SNDCTL_DSP_CHANNELS, &i_nb_channels ) < 0 ||
            i_nb_channels != aout_FormatNbChannels( &p_aout->output.output ) )
445
        {
446
            msg_Err( p_aout, "cannot set number of audio channels (%s)",
447
                     aout_FormatPrintChannels( &p_aout->output.output) );
448 449
            close( p_sys->i_fd );
            free( p_sys );
450
            return VLC_EGENERIC;
451 452 453 454 455 456 457 458
        }

        /* Set the output rate */
        i_rate = p_aout->output.output.i_rate;
        if( ioctl( p_sys->i_fd, SNDCTL_DSP_SPEED, &i_rate ) < 0 )
        {
            msg_Err( p_aout, "cannot set audio output rate (%i)",
                             p_aout->output.output.i_rate );
459 460
            close( p_sys->i_fd );
            free( p_sys );
461
            return VLC_EGENERIC;
462 463 464 465 466 467
        }

        if( i_rate != p_aout->output.output.i_rate )
        {
            p_aout->output.output.i_rate = i_rate;
        }
Gildas Bazin's avatar
 
Gildas Bazin committed
468 469 470 471 472 473

        /* Set the fragment size */
        aout_FormatPrepare( &p_aout->output.output );

        /* i_fragment = xxxxyyyy where: xxxx        is fragtotal
         *                              1 << yyyy   is fragsize */
474 475 476
        i_frame_size = ((uint64_t)p_aout->output.output.i_bytes_per_frame * p_aout->output.output.i_rate * 65536) / (48000 * 2 * 2) / FRAME_COUNT;
        i_fragments = 4;
        while( i_fragments < 12 && (1U << i_fragments) < i_frame_size )
Gildas Bazin's avatar
 
Gildas Bazin committed
477 478 479 480 481 482 483 484 485 486 487
        {
            ++i_fragments;
        }
        i_fragments |= FRAME_COUNT << 16;
        if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFRAGMENT, &i_fragments ) < 0 )
        {
            msg_Warn( p_aout, "cannot set fragment size (%.8x)", i_fragments );
        }

        if( ioctl( p_sys->i_fd, SNDCTL_DSP_GETOSPACE, &audio_buf ) < 0 )
        {
488
            msg_Err( p_aout, "cannot get fragment size" );
Gildas Bazin's avatar
 
Gildas Bazin committed
489 490 491 492
            close( p_sys->i_fd );
            free( p_sys );
            return VLC_EGENERIC;
        }
Gildas Bazin's avatar
 
Gildas Bazin committed
493
        else
Gildas Bazin's avatar
 
Gildas Bazin committed
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
        {
            /* Number of fragments actually allocated */
            p_aout->output.p_sys->i_fragstotal = audio_buf.fragstotal;

            /* Maximum duration the soundcard's buffer can hold */
            p_aout->output.p_sys->max_buffer_duration =
                (mtime_t)audio_buf.fragstotal * audio_buf.fragsize * 1000000
                / p_aout->output.output.i_bytes_per_frame
                / p_aout->output.output.i_rate
                * p_aout->output.output.i_frame_length;

            p_aout->output.i_nb_samples = audio_buf.fragsize /
                p_aout->output.output.i_bytes_per_frame;
        }

        aout_VolumeSoftInit( p_aout );
510 511
    }

512
    p_aout->output.p_sys->b_workaround_buggy_driver =
513
        var_InheritBool( p_aout, "oss-buggy" );
514

Christophe Massiot's avatar
Christophe Massiot committed
515
    /* Create OSS thread and wait for its readiness. */
516
    if( vlc_thread_create( p_aout, OSSThread,
517
                           VLC_THREAD_PRIORITY_OUTPUT ) )
Christophe Massiot's avatar
Christophe Massiot committed
518
    {
519
        msg_Err( p_aout, "cannot create OSS thread (%m)" );
Christophe Massiot's avatar
Christophe Massiot committed
520 521
        close( p_sys->i_fd );
        free( p_sys );
522
        return VLC_ENOMEM;
Christophe Massiot's avatar
Christophe Massiot committed
523
    }
524

525
    return VLC_SUCCESS;
526 527 528
}

/*****************************************************************************
Christophe Massiot's avatar
Christophe Massiot committed
529
 * Play: nothing to do
530
 *****************************************************************************/
531
static void Play( aout_instance_t *p_aout )
532
{
533
    VLC_UNUSED(p_aout);
534 535 536
}

/*****************************************************************************
537
 * Close: close the DSP audio device
538 539 540 541 542 543
 *****************************************************************************/
static void Close( vlc_object_t * p_this )
{
    aout_instance_t *p_aout = (aout_instance_t *)p_this;
    struct aout_sys_t * p_sys = p_aout->output.p_sys;

544
    vlc_object_kill( p_aout );
545
    vlc_thread_join( p_aout );
546
    p_aout->b_die = false;
547

548
    ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL );
549
    close( p_sys->i_fd );
550

551
    free( p_sys );
552 553 554
}

/*****************************************************************************
555
 * BufferDuration: buffer status query
556
 *****************************************************************************
557
 * This function returns the duration in microseconds of the current buffer.
558
 *****************************************************************************/
559
static mtime_t BufferDuration( aout_instance_t * p_aout )
560
{
561 562
    struct aout_sys_t * p_sys = p_aout->output.p_sys;
    audio_buf_info audio_buf;
563
    int i_bytes;
564

565 566 567 568 569
    /* Fill the audio_buf_info structure:
     * - fragstotal: total number of fragments allocated
     * - fragsize: size of a fragment in bytes
     * - bytes: available space in bytes (includes partially used fragments)
     * Note! 'bytes' could be more than fragments*fragsize */
570
    ioctl( p_sys->i_fd, SNDCTL_DSP_GETOSPACE, &audio_buf );
571

572 573 574 575 576 577 578 579
    /* calculate number of available fragments (not partially used ones) */
    i_bytes = (audio_buf.fragstotal * audio_buf.fragsize) - audio_buf.bytes;

    /* Return the fragment duration */
    return (mtime_t)i_bytes * 1000000
            / p_aout->output.output.i_bytes_per_frame
            / p_aout->output.output.i_rate
            * p_aout->output.output.i_frame_length;
580 581 582
}

/*****************************************************************************
583
 * OSSThread: asynchronous thread used to DMA the data to the device
584
 *****************************************************************************/
585
static void* OSSThread( vlc_object_t *p_this )
586
{
587
    aout_instance_t * p_aout = (aout_instance_t*)p_this;
588
    struct aout_sys_t * p_sys = p_aout->output.p_sys;
589
    mtime_t next_date = 0;
590
    int canc = vlc_savecancel ();
591

592
    while ( vlc_object_alive (p_aout) )
593
    {
594
        aout_buffer_t * p_buffer = NULL;
Christophe Massiot's avatar
Christophe Massiot committed
595
        int i_tmp, i_size;
596
        uint8_t * p_bytes;
597

598
        if ( p_aout->output.output.i_format != VLC_CODEC_SPDIFL )
Christophe Massiot's avatar
Christophe Massiot committed
599
        {
600
            mtime_t buffered = BufferDuration( p_aout );
601

Gildas Bazin's avatar
 
Gildas Bazin committed
602
            if( p_aout->output.p_sys->b_workaround_buggy_driver )
603
            {
Gildas Bazin's avatar
 
Gildas Bazin committed
604
#define i_fragstotal p_aout->output.p_sys->i_fragstotal
Gildas Bazin's avatar
 
Gildas Bazin committed
605
                /* Wait a bit - we don't want our buffer to be full */
Gildas Bazin's avatar
 
Gildas Bazin committed
606 607
                if( buffered > (p_aout->output.p_sys->max_buffer_duration
                                / i_fragstotal * (i_fragstotal - 1)) )
Gildas Bazin's avatar
 
Gildas Bazin committed
608
                {
Gildas Bazin's avatar
 
Gildas Bazin committed
609 610
                    msleep((p_aout->output.p_sys->max_buffer_duration
                                / i_fragstotal ));
Gildas Bazin's avatar
 
Gildas Bazin committed
611 612
                    buffered = BufferDuration( p_aout );
                }
Gildas Bazin's avatar
 
Gildas Bazin committed
613
#undef i_fragstotal
614
            }
615

Gildas Bazin's avatar
 
Gildas Bazin committed
616 617
            /* Next buffer will be played at mdate() + buffered */
            p_buffer = aout_OutputNextBuffer( p_aout, mdate() + buffered,
618
                                              false );
Gildas Bazin's avatar
 
Gildas Bazin committed
619 620 621 622

            if( p_buffer == NULL &&
                buffered > ( p_aout->output.p_sys->max_buffer_duration
                             / p_aout->output.p_sys->i_fragstotal ) )
623
            {
Gildas Bazin's avatar
 
Gildas Bazin committed
624 625 626 627 628 629
                /* If we have at least a fragment full, then we can wait a
                 * little and retry to get a new audio buffer instead of
                 * playing a blank sample */
                msleep( ( p_aout->output.p_sys->max_buffer_duration
                          / p_aout->output.p_sys->i_fragstotal / 2 ) );
                continue;
630
            }
631 632 633
        }
        else
        {
634 635 636 637 638 639 640 641 642 643 644 645 646 647
            /* emu10k1 driver does not report Buffer Duration correctly in
             * passthrough mode so we have to cheat */
            if( !next_date )
            {
                next_date = mdate();
            }
            else
            {
                mtime_t delay = next_date - mdate();
                if( delay > AOUT_PTS_TOLERANCE )
                {
                    msleep( delay / 2 );
                }
            }
648

649
            while( vlc_object_alive (p_aout) && ! ( p_buffer =
650
                aout_OutputNextBuffer( p_aout, next_date, true ) ) )
651
            {
652
                msleep( VLC_HARD_MIN_SLEEP );
653 654
                next_date = mdate();
            }
655
        }
656 657 658 659

        if ( p_buffer != NULL )
        {
            p_bytes = p_buffer->p_buffer;
660
            i_size = p_buffer->i_buffer;
661 662
            /* This is theoretical ... we'll see next iteration whether
             * we're drifting */
663
            next_date += p_buffer->i_length;
664 665 666
        }
        else
        {
667 668
            i_size = FRAME_SIZE / p_aout->output.output.i_frame_length
                      * p_aout->output.output.i_bytes_per_frame;
669
            p_bytes = malloc( i_size );
Christophe Massiot's avatar
Christophe Massiot committed
670
            memset( p_bytes, 0, i_size );
671
            next_date = 0;
672 673
        }

Christophe Massiot's avatar
Christophe Massiot committed
674
        i_tmp = write( p_sys->i_fd, p_bytes, i_size );
675 676 677

        if( i_tmp < 0 )
        {
Rafaël Carré's avatar
Rafaël Carré committed
678
            msg_Err( p_aout, "write failed (%m)" );
679 680 681 682 683 684
        }

        if ( p_buffer != NULL )
        {
            aout_BufferFree( p_buffer );
        }
685 686 687 688
        else
        {
            free( p_bytes );
        }
689
    }
690

691
    vlc_restorecancel (canc);
692
    return NULL;
693
}