]> git.sesse.net Git - vlc/blob - plugins/alsa/alsa.c
. all plugins now compile with -fPIC.
[vlc] / plugins / alsa / alsa.c
1 /*****************************************************************************
2  * dsp.c : OSS /dev/dsp plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000 VideoLAN
5  *
6  * Authors:
7  *  Henri Fallon <henri@videolan.org>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #include "defs.h"
25
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <sys/asoundlib.h>                                    /* for alsa :) */
29 #include <fcntl.h>
30 #include <stdlib.h>                                      /* malloc(), free() */
31 // #include <unistd.h>                                            /* close() */
32
33 #include "config.h"
34 #include "common.h"                                     /* boolean_t, byte_t */
35 #include "threads.h"
36 #include "mtime.h"
37 #include "tests.h"
38 #include "plugins.h"
39
40 #include "interface.h"
41 #include "audio_output.h"
42 #include "video.h"
43 #include "video_output.h"
44
45 #include "main.h"
46
47
48 /*****************************************************************************
49  * Exported prototypes
50  *****************************************************************************/
51 static void aout_GetPlugin( p_aout_thread_t p_aout );
52
53 /* Audio output */
54 int     aout_AlsaOpen         ( aout_thread_t *p_aout );
55 int     aout_AlsaSetFormat    ( aout_thread_t *p_aout );
56 long    aout_AlsaGetBufInfo   ( aout_thread_t *p_aout, long l_buffer_info );
57 void    aout_AlsaPlay         ( aout_thread_t *p_aout, byte_t *buffer,
58                                int i_size );
59 void    aout_AlsaClose        ( aout_thread_t *p_aout );
60
61 /*****************************************************************************
62  * GetConfig: get the plugin structure and configuration
63  *****************************************************************************/
64 plugin_info_t * GetConfig( void )
65 {
66     plugin_info_t * p_info = (plugin_info_t *) malloc( sizeof(plugin_info_t) );
67
68     p_info->psz_name    = "Alsa plugin";
69     p_info->psz_version = VERSION;
70     p_info->psz_author  = "the VideoLAN team <vlc@videolan.org>";
71
72     p_info->aout_GetPlugin = aout_GetPlugin;
73     p_info->vout_GetPlugin = NULL;
74     p_info->intf_GetPlugin = NULL;
75     p_info->yuv_GetPlugin  = NULL;
76
77
78     /* TODO : test if alsa is available */
79     p_info->i_score = 0x100;
80
81     /* If this plugin was requested, score it higher */
82     if( TestMethod( AOUT_METHOD_VAR, "alsa" ) )
83     {
84         p_info->i_score += 0x200;
85     }
86
87     return( p_info );
88 }
89
90 /*****************************************************************************
91  * Following functions are only called through the p_info structure
92  *****************************************************************************/
93
94 static void aout_GetPlugin( p_aout_thread_t p_aout )
95 {
96     p_aout->p_open        = aout_AlsaOpen;
97     p_aout->p_setformat   = aout_AlsaSetFormat;
98     p_aout->p_getbufinfo  = aout_AlsaGetBufInfo;
99     p_aout->p_play        = aout_AlsaPlay;
100     p_aout->p_close       = aout_AlsaClose;
101 }