]> git.sesse.net Git - vlc/blob - modules/audio_mixer/spdif.c
Do not #include <vlc_aout_mixer.h> from <vlc_aout.h>
[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 void DoWork    ( aout_mixer_t *, aout_buffer_t * );
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     {
66         return -1;
67     }
68
69     p_mixer->mix = DoWork;
70     /* This is a bit kludgy - do not ask for a new buffer, since the one
71      * provided by the first input will be good enough. */
72     p_mixer->allocation.b_alloc = false;
73
74     return 0;
75 }
76
77 /*****************************************************************************
78  * DoWork: mix a new output buffer - this does nothing, indeed
79  *****************************************************************************/
80 static void DoWork( aout_mixer_t * p_mixer, aout_buffer_t * p_buffer )
81 {
82     VLC_UNUSED( p_buffer );
83
84     aout_mixer_input_t * p_input = p_mixer->input;
85
86     aout_buffer_t * p_old_buffer = aout_FifoPop( NULL, &p_input->fifo );
87     /* We don't free the old buffer because,
88      * The aout core use a hack to avoid useless memcpy: the buffer in which
89      * to mix is the same as the one in the first active input fifo.
90      * So the ownership of that buffer belongs to our caller */
91     assert( p_old_buffer == p_buffer );
92 }