]> git.sesse.net Git - vlc/blob - plugins/idct/idctaltivec.c
b711f3d502865e135e5512f11931ae115dad17b9
[vlc] / plugins / idct / idctaltivec.c
1 /*****************************************************************************
2  * idctaltivec.c : Altivec IDCT module
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: idctaltivec.c,v 1.4 2001/04/15 04:19:57 sam Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #define MODULE_NAME idctaltivec
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include "defs.h"
30
31 #include <stdlib.h>
32
33 #include "config.h"
34 #include "common.h"
35 #include "threads.h"
36 #include "mtime.h"
37 #include "tests.h"                                              /* TestCPU() */
38
39 #include "video.h"
40 #include "video_output.h"
41
42 #include "video_decoder.h"
43
44 #include "modules.h"
45 #include "modules_inner.h"
46
47 #include "idct.h"
48
49 #include "idctaltivec.h"
50
51 /*****************************************************************************
52  * Local prototypes.
53  *****************************************************************************/
54 static void idct_getfunctions( function_list_t * p_function_list );
55 static int  idct_Probe      ( probedata_t *p_data );
56 static void vdec_NormScan   ( u8 ppi_scan[2][64] );
57
58
59 /*****************************************************************************
60  * Build configuration tree.
61  *****************************************************************************/
62 MODULE_CONFIG_START
63 ADD_WINDOW( "Configuration for Altivec IDCT module" )
64     ADD_COMMENT( "Ha, ha -- nothing to configure yet" )
65 MODULE_CONFIG_END
66
67 /*****************************************************************************
68  * InitModule: get the module structure and configuration.
69  *****************************************************************************
70  * We have to fill psz_name, psz_longname and psz_version. These variables
71  * will be strdup()ed later by the main application because the module can
72  * be unloaded later to save memory, and we want to be able to access this
73  * data even after the module has been unloaded.
74  *****************************************************************************/
75 MODULE_INIT
76 {
77     p_module->psz_name = MODULE_STRING;
78     p_module->psz_longname = "Altivec IDCT module";
79     p_module->psz_version = VERSION;
80
81     p_module->i_capabilities = MODULE_CAPABILITY_NULL
82                                 | MODULE_CAPABILITY_IDCT;
83
84     return( 0 );
85 }
86
87 /*****************************************************************************
88  * ActivateModule: set the module to an usable state.
89  *****************************************************************************
90  * This function fills the capability functions and the configuration
91  * structure. Once ActivateModule() has been called, the i_usage can
92  * be set to 0 and calls to NeedModule() be made to increment it. To unload
93  * the module, one has to wait until i_usage == 0 and call DeactivateModule().
94  *****************************************************************************/
95 MODULE_ACTIVATE
96 {
97     p_module->p_functions = malloc( sizeof( module_functions_t ) );
98     if( p_module->p_functions == NULL )
99     {
100         return( -1 );
101     }
102
103     idct_getfunctions( &p_module->p_functions->idct );
104
105     p_module->p_config = p_config;
106
107     return( 0 );
108 }
109
110 /*****************************************************************************
111  * DeactivateModule: make sure the module can be unloaded.
112  *****************************************************************************
113  * This function must only be called when i_usage == 0. If it successfully
114  * returns, i_usage can be set to -1 and the module unloaded. Be careful to
115  * lock usage_lock during the whole process.
116  *****************************************************************************/
117 MODULE_DEACTIVATE
118 {
119     free( p_module->p_functions );
120
121     return( 0 );
122 }
123
124 /* Following functions are local */
125
126 /*****************************************************************************
127  * Functions exported as capabilities.
128  *****************************************************************************/
129 static void idct_getfunctions( function_list_t * p_function_list )
130 {
131     p_function_list->pf_probe = idct_Probe;
132     p_function_list->functions.idct.pf_init = _M( vdec_InitIDCT );
133     p_function_list->functions.idct.pf_sparse_idct = _M( vdec_SparseIDCT );
134     p_function_list->functions.idct.pf_idct = _M( vdec_IDCT );
135     p_function_list->functions.idct.pf_norm_scan = vdec_NormScan;
136 }
137
138 /*****************************************************************************
139  * idct_Probe: return a preference score
140  *****************************************************************************/
141 static int idct_Probe( probedata_t *p_data )
142 {
143     if( TestCPU( CPU_CAPABILITY_ALTIVEC ) )
144     {
145         if( TestMethod( IDCT_METHOD_VAR, "idctaltivec" ) )
146         {
147             return( 999 );
148         }
149         else
150         {
151             /* The Altivec iDCT is deactivated until it really works */
152             return( 0 /* 200 */ );
153         }
154     }
155     else
156     {
157         return( 0 );
158     }
159 }
160
161 /*****************************************************************************
162  * vdec_NormScan : Soon, transpose
163  *****************************************************************************/
164 static void vdec_NormScan( u8 ppi_scan[2][64] )
165 {
166 }
167
168 /*****************************************************************************
169  * vdec_IDCT :
170  *****************************************************************************/
171 void _M( vdec_IDCT )( vdec_thread_t * p_vdec, dctelem_t * p_block,
172                 int i_idontcare )
173 {
174     IDCT( p_block, p_block );
175 }
176