]> git.sesse.net Git - vlc/blob - modules/audio_mixer/spdif.c
cd1906a7335aecc64b71cfca7d1225c220abd3cd
[vlc] / modules / audio_mixer / spdif.c
1 /*****************************************************************************
2  * spdif.c : dummy mixer for S/PDIF output (1 input only)
3  *****************************************************************************
4  * Copyright (C) 2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <assert.h>
33
34 #include <vlc_common.h>
35 #include <vlc_plugin.h>
36 #include <vlc_aout.h>
37 #include <vlc_aout_mixer.h>
38
39 /*****************************************************************************
40  * Local prototypes
41  *****************************************************************************/
42 static int  Create    ( vlc_object_t * );
43
44 static aout_buffer_t *DoWork( aout_mixer_t *, unsigned );
45
46 /*****************************************************************************
47  * Module descriptor
48  *****************************************************************************/
49 vlc_module_begin ()
50     set_category( CAT_AUDIO )
51     set_subcategory( SUBCAT_AUDIO_MISC )
52     set_description( N_("Dummy S/PDIF audio mixer") )
53     set_capability( "audio mixer", 1 )
54     set_callbacks( Create, NULL )
55 vlc_module_end ()
56
57 /*****************************************************************************
58  * Create: allocate spdif mixer
59  *****************************************************************************/
60 static int Create( vlc_object_t *p_this )
61 {
62     aout_mixer_t *p_mixer = (aout_mixer_t *)p_this;
63
64     if ( !AOUT_FMT_NON_LINEAR(&p_mixer->fmt) )
65         return -1;
66
67     p_mixer->mix = DoWork;
68     return 0;
69 }
70
71 /*****************************************************************************
72  * DoWork: mix a new output buffer - this does nothing, indeed
73  *****************************************************************************/
74 static aout_buffer_t *DoWork( aout_mixer_t * p_mixer, unsigned samples )
75 {
76     aout_mixer_input_t * p_input = p_mixer->input;
77     aout_buffer_t * p_old_buffer = aout_FifoPop( NULL, &p_input->fifo );
78
79     (void) samples;
80     return p_old_buffer;
81 }