]> git.sesse.net Git - vlc/blob - plugins/idct/idctmmx.c
. a few changes in the CPU extensions detection code, borrowed from the
[vlc] / plugins / idct / idctmmx.c
1 /*****************************************************************************
2  * idctmmx.c : MMX IDCT module
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  * $Id: idctmmx.c,v 1.5 2001/01/16 16:09:52 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 idctmmx
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 /*****************************************************************************
50  * Local prototypes.
51  *****************************************************************************/
52 static void idct_getfunctions( function_list_t * p_function_list );
53
54 static int  idct_Probe      ( probedata_t *p_data );
55 static void vdec_InitIDCT   ( vdec_thread_t * p_vdec);
56        void vdec_SparseIDCT ( vdec_thread_t * p_vdec, dctelem_t * p_block,
57                               int i_sparse_pos);
58        void vdec_IDCT       ( vdec_thread_t * p_vdec, dctelem_t * p_block,
59                               int i_idontcare );
60
61
62 /*****************************************************************************
63  * Build configuration tree.
64  *****************************************************************************/
65 MODULE_CONFIG_START
66 ADD_WINDOW( "Configuration for MMX IDCT module" )
67     ADD_COMMENT( "Ha, ha -- nothing to configure yet" )
68 MODULE_CONFIG_END
69
70 /*****************************************************************************
71  * InitModule: get the module structure and configuration.
72  *****************************************************************************
73  * We have to fill psz_name, psz_longname and psz_version. These variables
74  * will be strdup()ed later by the main application because the module can
75  * be unloaded later to save memory, and we want to be able to access this
76  * data even after the module has been unloaded.
77  *****************************************************************************/
78 int InitModule( module_t * p_module )
79 {
80     p_module->psz_name = MODULE_STRING;
81     p_module->psz_longname = "MMX IDCT module";
82     p_module->psz_version = VERSION;
83
84     p_module->i_capabilities = MODULE_CAPABILITY_NULL
85                                 | MODULE_CAPABILITY_IDCT;
86
87     return( 0 );
88 }
89
90 /*****************************************************************************
91  * ActivateModule: set the module to an usable state.
92  *****************************************************************************
93  * This function fills the capability functions and the configuration
94  * structure. Once ActivateModule() has been called, the i_usage can
95  * be set to 0 and calls to NeedModule() be made to increment it. To unload
96  * the module, one has to wait until i_usage == 0 and call DeactivateModule().
97  *****************************************************************************/
98 int ActivateModule( module_t * p_module )
99 {
100     p_module->p_functions = malloc( sizeof( module_functions_t ) );
101     if( p_module->p_functions == NULL )
102     {
103         return( -1 );
104     }
105
106     idct_getfunctions( &p_module->p_functions->idct );
107
108     p_module->p_config = p_config;
109
110     return( 0 );
111 }
112
113 /*****************************************************************************
114  * DeactivateModule: make sure the module can be unloaded.
115  *****************************************************************************
116  * This function must only be called when i_usage == 0. If it successfully
117  * returns, i_usage can be set to -1 and the module unloaded. Be careful to
118  * lock usage_lock during the whole process.
119  *****************************************************************************/
120 int DeactivateModule( module_t * p_module )
121 {
122     free( p_module->p_functions );
123
124     return( 0 );
125 }
126
127 /* Following functions are local */
128
129 /*****************************************************************************
130  * Functions exported as capabilities. They are declared as static so that
131  * we don't pollute the namespace too much.
132  *****************************************************************************/
133 static void idct_getfunctions( function_list_t * p_function_list )
134 {
135     p_function_list->pf_probe = idct_Probe;
136     p_function_list->functions.idct.pf_init = vdec_InitIDCT;
137     p_function_list->functions.idct.pf_sparse_idct = vdec_SparseIDCT;
138     p_function_list->functions.idct.pf_idct = vdec_IDCT;
139 }
140
141 /*****************************************************************************
142  * idct_Probe: return a preference score
143  *****************************************************************************/
144 static int idct_Probe( probedata_t *p_data )
145 {
146     if( TestCPU( CPU_CAPABILITY_MMX ) )
147     {
148         if( TestMethod( IDCT_METHOD_VAR, "idctmmx" ) )
149         {
150             return( 999 );
151         }
152         else
153         {
154             return( 100 );
155         }
156     }
157     else
158     {
159         return( 0 );
160     }
161 }
162
163 /*****************************************************************************
164  * vdec_InitIDCT : initialize datas for vdec_SparceIDCT
165  *****************************************************************************/
166 static void vdec_InitIDCT (vdec_thread_t * p_vdec)
167 {
168     int i;
169
170     dctelem_t * p_pre = p_vdec->p_pre_idct;
171     memset( p_pre, 0, 64*64*sizeof(dctelem_t) );
172
173     for( i=0 ; i < 64 ; i++ )
174     {
175         p_pre[i*64+i] = 1 << SPARSE_SCALE_FACTOR;
176         vdec_IDCT( p_vdec, &p_pre[i*64], 0) ;
177     }
178     return;
179 }
180