]> git.sesse.net Git - vlc/blob - plugins/downmix/downmix3dn.c
Some heavy changes today:
[vlc] / plugins / downmix / downmix3dn.c
1 /*****************************************************************************
2  * downmix3dn.c : accelerated 3D Now! AC3 downmix module
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: downmix3dn.c,v 1.7 2001/12/30 07:09:54 sam Exp $
6  *
7  * Authors: Renaud Dartus <reno@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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28 #include <string.h>
29
30 #include <videolan/vlc.h>
31
32 #include "ac3_downmix.h"
33 #include "ac3_downmix_common.h"
34
35 /*****************************************************************************
36  * Local and extern prototypes.
37  *****************************************************************************/
38 static void downmix_getfunctions( function_list_t * p_function_list );
39 static int  downmix_Probe       ( probedata_t *p_data );
40
41 /*****************************************************************************
42  * Build configuration tree.
43  *****************************************************************************/
44 MODULE_CONFIG_START
45 MODULE_CONFIG_STOP
46
47 MODULE_INIT_START
48     SET_DESCRIPTION( "3D Now! AC3 downmix module" )
49     ADD_CAPABILITY( DOWNMIX, 200 )
50     ADD_REQUIREMENT( 3DNOW )
51     ADD_SHORTCUT( "3dn" )
52     ADD_SHORTCUT( "3dnow" )
53     ADD_SHORTCUT( "downmix3dn" )
54 MODULE_INIT_STOP
55
56 MODULE_ACTIVATE_START
57     downmix_getfunctions( &p_module->p_functions->downmix );
58 MODULE_ACTIVATE_STOP
59
60 MODULE_DEACTIVATE_START
61 MODULE_DEACTIVATE_STOP
62
63 /* Following functions are local */
64
65 /*****************************************************************************
66  * Functions exported as capabilities. They are declared as static so that
67  * we don't pollute the namespace too much.
68  *****************************************************************************/
69 static void downmix_getfunctions( function_list_t * p_function_list )
70 {
71     p_function_list->pf_probe = downmix_Probe;
72 #define F p_function_list->functions.downmix
73     F.pf_downmix_3f_2r_to_2ch = _M( downmix_3f_2r_to_2ch );
74     F.pf_downmix_3f_1r_to_2ch = _M( downmix_3f_1r_to_2ch );
75     F.pf_downmix_2f_2r_to_2ch = _M( downmix_2f_2r_to_2ch );
76     F.pf_downmix_2f_1r_to_2ch = _M( downmix_2f_1r_to_2ch );
77     F.pf_downmix_3f_0r_to_2ch = _M( downmix_3f_0r_to_2ch );
78     F.pf_stream_sample_2ch_to_s16 = _M( stream_sample_2ch_to_s16 );
79     F.pf_stream_sample_1ch_to_s16 = _M( stream_sample_1ch_to_s16 );
80 #undef F
81 }
82
83 /*****************************************************************************
84  * downmix_Probe: returns a preference score
85  *****************************************************************************/
86 static int downmix_Probe( probedata_t *p_data )
87 {
88     return( 200 );
89 }
90