]> git.sesse.net Git - vlc/blob - modules/misc/dummy/aout.c
macosx: fixed menubar appearance in fullscreen mode by partially reverting [46c93c9cc...
[vlc] / modules / misc / dummy / aout.c
1 /*****************************************************************************
2  * aout_dummy.c : dummy audio output plugin
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 <vlc_common.h>
33 #include <vlc_aout.h>
34
35 #include "dummy.h"
36
37 #define FRAME_SIZE 2048
38 #define A52_FRAME_NB 1536
39
40 /*****************************************************************************
41  * Local prototypes.
42  *****************************************************************************/
43 static void    Play        ( aout_instance_t * );
44
45 /*****************************************************************************
46  * OpenAudio: open a dummy audio device
47  *****************************************************************************/
48 int OpenAudio ( vlc_object_t * p_this )
49 {
50     aout_instance_t * p_aout = (aout_instance_t *)p_this;
51
52     p_aout->output.pf_play = Play;
53     aout_VolumeSoftInit( p_aout );
54
55     if ( p_aout->output.output.i_format == VLC_FOURCC('s','p','d','i') )
56     {
57         p_aout->output.i_nb_samples = A52_FRAME_NB;
58         p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
59         p_aout->output.output.i_frame_length = A52_FRAME_NB;
60     }
61     else
62     {
63         p_aout->output.i_nb_samples = FRAME_SIZE;
64     }
65     return 0;
66 }
67
68 /*****************************************************************************
69  * Play: pretend to play a sound
70  *****************************************************************************/
71 static void Play( aout_instance_t * p_aout )
72 {
73     aout_buffer_t * p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
74     aout_BufferFree( p_buffer );
75 }
76