]> git.sesse.net Git - vlc/blob - plugins/imdct/imdct.c
57424a0915e3897840e03df5a8eb49d2f70d0a3b
[vlc] / plugins / imdct / imdct.c
1 /*****************************************************************************
2  * imdct.c : IMDCT module
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: imdct.c,v 1.1 2001/05/15 16:19:42 sam Exp $
6  *
7  * Authors: GaĆ«l Hendryckx <jimmy@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 #define MODULE_NAME imdct
25 #include "modules_inner.h"
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include "defs.h"
31
32 #include <stdlib.h>
33
34 #include "config.h"
35 #include "common.h"
36 #include "threads.h"
37 #include "mtime.h"
38 #include "tests.h"
39
40 #include "ac3_imdct.h"
41 #include "ac3_imdct_common.h"
42
43 #include "modules.h"
44
45 /*****************************************************************************
46  * Local and extern prototypes.
47  *****************************************************************************/
48 static void imdct_getfunctions( function_list_t * p_function_list );
49 static int  imdct_Probe       ( probedata_t *p_data );
50
51 /*****************************************************************************
52  * Build configuration tree.
53  *****************************************************************************/
54 MODULE_CONFIG_START
55 ADD_WINDOW( "Configuration for IMDCT module" )
56     ADD_COMMENT( "Ha, ha -- nothing to configure yet" )
57 MODULE_CONFIG_END
58
59 /*****************************************************************************
60  * InitModule: get the module structure and configuration.
61  *****************************************************************************
62  * We have to fill psz_name, psz_longname and psz_version. These variables
63  * will be strdup()ed later by the main application because the module can
64  * be unloaded later to save memory, and we want to be able to access this
65  * data even after the module has been unloaded.
66  *****************************************************************************/
67 MODULE_INIT
68 {
69     p_module->psz_name = MODULE_STRING;
70     p_module->psz_longname = "AC3 IMDCT module";
71     p_module->psz_version = VERSION;
72
73     p_module->i_capabilities = MODULE_CAPABILITY_NULL
74                                 | MODULE_CAPABILITY_IMDCT;
75
76     return( 0 );
77 }
78
79 /*****************************************************************************
80  * ActivateModule: set the module to an usable state.
81  *****************************************************************************
82  * This function fills the capability functions and the configuration
83  * structure. Once ActivateModule() has been called, the i_usage can
84  * be set to 0 and calls to NeedModule() be made to increment it. To unload
85  * the module, one has to wait until i_usage == 0 and call DeactivateModule().
86  *****************************************************************************/
87 MODULE_ACTIVATE
88 {
89     p_module->p_functions = malloc( sizeof( module_functions_t ) );
90     if( p_module->p_functions == NULL )
91     {
92         return( -1 );
93     }
94
95     imdct_getfunctions( &p_module->p_functions->imdct );
96
97     p_module->p_config = p_config;
98
99     return( 0 );
100 }
101
102 /*****************************************************************************
103  * DeactivateModule: make sure the module can be unloaded.
104  *****************************************************************************
105  * This function must only be called when i_usage == 0. If it successfully
106  * returns, i_usage can be set to -1 and the module unloaded. Be careful to
107  * lock usage_lock during the whole process.
108  *****************************************************************************/
109 MODULE_DEACTIVATE
110 {
111     free( p_module->p_functions );
112
113     return( 0 );
114 }
115
116 /* Following functions are local */
117
118 /*****************************************************************************
119  * Functions exported as capabilities. They are declared as static so that
120  * we don't pollute the namespace too much.
121  *****************************************************************************/
122 static void imdct_getfunctions( function_list_t * p_function_list )
123 {
124     p_function_list->pf_probe = imdct_Probe;
125 #define F p_function_list->functions.imdct
126     F.pf_imdct_init    = _M( imdct_init );
127     F.pf_imdct_256     = _M( imdct_do_256 );
128     F.pf_imdct_256_nol = _M( imdct_do_256_nol );
129     F.pf_imdct_512     = _M( imdct_do_512 );
130     F.pf_imdct_512_nol = _M( imdct_do_512_nol );
131 #undef F
132 }
133
134 /*****************************************************************************
135  * imdct_Probe: returns a preference score
136  *****************************************************************************/
137 static int imdct_Probe( probedata_t *p_data )
138 {
139     if( TestMethod( IMDCT_METHOD_VAR, "imdct" ) )
140     {
141         return( 999 );
142     }
143
144     /* This plugin always works */
145     return( 50 );
146 }
147