[svn] / trunk / xvidcore / src / motion / sad.h Repository:
ViewVC logotype

Diff of /trunk/xvidcore/src/motion/sad.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 851, Sat Feb 15 15:22:19 2003 UTC revision 1382, Mon Mar 22 22:36:25 2004 UTC
# Line 1  Line 1 
1    /*****************************************************************************
2     *
3     *  XVID MPEG-4 VIDEO CODEC
4     *  - Sum Of Absolute Difference header  -
5     *
6     *  Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
7     *
8     *  This program is free software ; you can redistribute it and/or modify
9     *  it under the terms of the GNU General Public License as published by
10     *  the Free Software Foundation ; either version 2 of the License, or
11     *  (at your option) any later version.
12     *
13     *  This program is distributed in the hope that it will be useful,
14     *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
15     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     *  GNU General Public License for more details.
17     *
18     *  You should have received a copy of the GNU General Public License
19     *  along with this program ; if not, write to the Free Software
20     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21     *
22     * $Id: sad.h,v 1.19 2004-03-22 22:36:24 edgomez Exp $
23     *
24     ****************************************************************************/
25    
26  #ifndef _ENCODER_SAD_H_  #ifndef _ENCODER_SAD_H_
27  #define _ENCODER_SAD_H_  #define _ENCODER_SAD_H_
28    
   
29  #include "../portab.h"  #include "../portab.h"
30    
31  typedef void (sadInitFunc) (void);  typedef void (sadInitFunc) (void);
# Line 10  Line 34 
34  extern sadInitFuncPtr sadInit;  extern sadInitFuncPtr sadInit;
35  sadInitFunc sadInit_altivec;  sadInitFunc sadInit_altivec;
36    
   
37  typedef uint32_t(sad16Func) (const uint8_t * const cur,  typedef uint32_t(sad16Func) (const uint8_t * const cur,
38                                                           const uint8_t * const ref,                                                           const uint8_t * const ref,
39                                                           const uint32_t stride,                                                           const uint32_t stride,
# Line 18  Line 41 
41  typedef sad16Func *sad16FuncPtr;  typedef sad16Func *sad16FuncPtr;
42  extern sad16FuncPtr sad16;  extern sad16FuncPtr sad16;
43  sad16Func sad16_c;  sad16Func sad16_c;
44    
45    #ifdef ARCH_IS_IA32
46  sad16Func sad16_mmx;  sad16Func sad16_mmx;
47  sad16Func sad16_xmm;  sad16Func sad16_xmm;
48  sad16Func sad16_3dne;  sad16Func sad16_3dne;
49  sad16Func sad16_sse2;  sad16Func sad16_sse2;
50    #endif
51    
52    #ifdef ARCH_IS_ALTIVEC
53  sad16Func sad16_altivec;  sad16Func sad16_altivec;
54    #endif
55    
56    #ifdef ARCH_IS_IA64
57  sad16Func sad16_ia64;  sad16Func sad16_ia64;
58    #endif
59    
60  sad16Func mrsad16_c;  sad16Func mrsad16_c;
61    
# Line 33  Line 65 
65  typedef sad8Func *sad8FuncPtr;  typedef sad8Func *sad8FuncPtr;
66  extern sad8FuncPtr sad8;  extern sad8FuncPtr sad8;
67  sad8Func sad8_c;  sad8Func sad8_c;
68    
69    #ifdef ARCH_IS_IA32
70  sad8Func sad8_mmx;  sad8Func sad8_mmx;
71  sad8Func sad8_xmm;  sad8Func sad8_xmm;
72  sad8Func sad8_3dne;  sad8Func sad8_3dne;
73    #endif
74    
75    #ifdef ARCH_IS_ALTIVEC
76  sad8Func sad8_altivec;  sad8Func sad8_altivec;
77  sad8Func sad8_ia64;  #endif
78    
79    #ifdef ARCH_IS_IA64
80    sad8Func sad8_ia64;
81    #endif
82    
83  typedef uint32_t(sad16biFunc) (const uint8_t * const cur,  typedef uint32_t(sad16biFunc) (const uint8_t * const cur,
84                                                             const uint8_t * const ref1,                                                             const uint8_t * const ref1,
# Line 47  Line 87 
87  typedef sad16biFunc *sad16biFuncPtr;  typedef sad16biFunc *sad16biFuncPtr;
88  extern sad16biFuncPtr sad16bi;  extern sad16biFuncPtr sad16bi;
89  sad16biFunc sad16bi_c;  sad16biFunc sad16bi_c;
90  sad16biFunc sad16bi_ia64;  
91    #ifdef ARCH_IS_IA32
92  sad16biFunc sad16bi_mmx;  sad16biFunc sad16bi_mmx;
93  sad16biFunc sad16bi_xmm;  sad16biFunc sad16bi_xmm;
94  sad16biFunc sad16bi_3dne;  sad16biFunc sad16bi_3dne;
95  sad16biFunc sad16bi_3dn;  sad16biFunc sad16bi_3dn;
96    #endif
97    
98    #ifdef ARCH_IS_IA64
99    sad16biFunc sad16bi_ia64;
100    #endif
101    
102  typedef uint32_t(sad8biFunc) (const uint8_t * const cur,  typedef uint32_t(sad8biFunc) (const uint8_t * const cur,
103                                                             const uint8_t * const ref1,                                                             const uint8_t * const ref1,
# Line 61  Line 106 
106  typedef sad8biFunc *sad8biFuncPtr;  typedef sad8biFunc *sad8biFuncPtr;
107  extern sad8biFuncPtr sad8bi;  extern sad8biFuncPtr sad8bi;
108  sad8biFunc sad8bi_c;  sad8biFunc sad8bi_c;
109    
110    #ifdef ARCH_IS_IA32
111  sad8biFunc sad8bi_mmx;  sad8biFunc sad8bi_mmx;
112  sad8biFunc sad8bi_xmm;  sad8biFunc sad8bi_xmm;
113  sad8biFunc sad8bi_3dne;  sad8biFunc sad8bi_3dne;
114  sad8biFunc sad8bi_3dn;  sad8biFunc sad8bi_3dn;
115    #endif
116    
117    
118  typedef uint32_t(dev16Func) (const uint8_t * const cur,  typedef uint32_t(dev16Func) (const uint8_t * const cur,
# Line 72  Line 120 
120  typedef dev16Func *dev16FuncPtr;  typedef dev16Func *dev16FuncPtr;
121  extern dev16FuncPtr dev16;  extern dev16FuncPtr dev16;
122  dev16Func dev16_c;  dev16Func dev16_c;
 dev16Func dev16_mmx;  
 dev16Func dev16_xmm;  
 dev16Func dev16_3dne;  
 dev16Func dev16_sse2;  
 dev16Func dev16_altivec;  
 dev16Func dev16_ia64;  
123    
124  typedef uint32_t (sad16vFunc)(  const uint8_t * const cur,  typedef uint32_t (sad16vFunc)(  const uint8_t * const cur,
125                                                                  const uint8_t * const ref,                                                                  const uint8_t * const ref,
126                                                                  const uint32_t stride, int32_t *sad8);                                                                  const uint32_t stride, int32_t *sad8);
127  typedef sad16vFunc *sad16vFuncPtr;  typedef sad16vFunc *sad16vFuncPtr;
128  extern sad16vFuncPtr sad16v;  extern sad16vFuncPtr sad16v;
129  sad16vFunc sad16v_xmm;  
 sad16vFunc sad16v_mmx;  
130  sad16vFunc sad16v_c;  sad16vFunc sad16v_c;
131  sad16vFunc sad32v_c;  sad16vFunc sad32v_c;
 sad16vFunc mrsad16v;  
 sad16vFunc mrsad16v_c;  
132    
133  int32_t sad8x8mean_mmx( const uint8_t * const current,  #ifdef ARCH_IS_IA32
134                                                  const uint8_t * const reference,  dev16Func dev16_mmx;
135                                                  const uint32_t stride,  dev16Func dev16_xmm;
136                                                  const int mean);  dev16Func dev16_3dne;
137    dev16Func dev16_sse2;
138    sad16vFunc sad16v_xmm;
139    sad16vFunc sad16v_mmx;
140    #endif
141    
142    #ifdef ARCH_IS_ALTIVEC
143    dev16Func dev16_altivec;
144    #endif
145    
146    #ifdef ARCH_IS_IA64
147    dev16Func dev16_ia64;
148    #endif
149    
150    typedef uint32_t (sse8Func_16bit)(const int16_t * cur,
151                                                                      const int16_t * ref,
152                                                                      const uint32_t stride);
153    typedef sse8Func_16bit *sse8Func_16bitPtr;
154    extern sse8Func_16bitPtr sse8_16bit;
155    
156  void sad16x8total_mmx(const uint8_t *, const uint32_t, int32_t[]);  sse8Func_16bit sse8_16bit_c;
157    #ifdef ARCH_IS_IA32
158    sse8Func_16bit sse8_16bit_mmx;
159    #endif
160    
161  #endif                                                  /* _ENCODER_SAD_H_ */  #endif                                                  /* _ENCODER_SAD_H_ */

Legend:
Removed from v.851  
changed lines
  Added in v.1382

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4