[cvs] / xvidcore / src / utils / mem_transfer.h Repository:
ViewVC logotype

Diff of /xvidcore/src/utils/mem_transfer.h

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

revision 1.11, Sun Nov 17 00:51:11 2002 UTC revision 1.15, Sun Dec 19 13:16:50 2004 UTC
# Line 3  Line 3 
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  - 8<->16 bit buffer transfer header -   *  - 8<->16 bit buffer transfer header -
5   *   *
6   *  Copyright(C) 2002 Michael Militzer <isibaar@xvid.org>   *  Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
7   *   *
8   *  This file is part of XviD, a free MPEG-4 video encoder/decoder   *  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
  *  XviD is free software; you can redistribute it and/or modify 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   *  the Free Software Foundation; either version 2 of the License, or
11   *  (at your option) any later version.   *  (at your option) any later version.
12   *   *
# Line 21  Line 19 
19   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
20   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21   *   *
  *  Under section 8 of the GNU General Public License, the copyright  
  *  holders of XVID explicitly forbid distribution in the following  
  *  countries:  
  *  
  *    - Japan  
  *    - United States of America  
  *  
  *  Linking XviD statically or dynamically with other modules is making a  
  *  combined work based on XviD.  Thus, the terms and conditions of the  
  *  GNU General Public License cover the whole combination.  
  *  
  *  As a special exception, the copyright holders of XviD give you  
  *  permission to link XviD with independent modules that communicate with  
  *  XviD solely through the VFW1.1 and DShow interfaces, regardless of the  
  *  license terms of these independent modules, and to copy and distribute  
  *  the resulting combined work under terms of your choice, provided that  
  *  every copy of the combined work is accompanied by a complete copy of  
  *  the source code of XviD (the version of XviD used to produce the  
  *  combined work), being distributed under the terms of the GNU General  
  *  Public License plus this exception.  An independent module is a module  
  *  which is not derived from or based on XviD.  
  *  
  *  Note that people who make modified versions of XviD are not obligated  
  *  to grant this special exception for their modified versions; it is  
  *  their choice whether to do so.  The GNU General Public License gives  
  *  permission to release a modified version without this exception; this  
  *  exception also makes it possible to release a modified version which  
  *  carries forward this exception.  
  *  
22   * $Id$   * $Id$
23   *   *
24   ****************************************************************************/   ****************************************************************************/
# Line 71  Line 40 
40  extern TRANSFER_8TO16COPY_PTR transfer_8to16copy;  extern TRANSFER_8TO16COPY_PTR transfer_8to16copy;
41    
42  /* Implemented functions */  /* Implemented functions */
43  TRANSFER_8TO16COPY transfer_8to16copy_c;  extern TRANSFER_8TO16COPY transfer_8to16copy_c;
44  TRANSFER_8TO16COPY transfer_8to16copy_mmx;  
45  TRANSFER_8TO16COPY transfer_8to16copy_ia64;  #ifdef ARCH_IS_IA32
46    extern TRANSFER_8TO16COPY transfer_8to16copy_mmx;
47    extern TRANSFER_8TO16COPY transfer_8to16copy_3dne;
48    #endif
49    
50    #ifdef ARCH_IS_IA64
51    extern TRANSFER_8TO16COPY transfer_8to16copy_ia64;
52    #endif
53    
54    #ifdef ARCH_IS_PPC
55    extern TRANSFER_8TO16COPY transfer_8to16copy_altivec_c;
56    #endif
57    
58  /*****************************************************************************  /*****************************************************************************
59   * transfer16to8 API   * transfer16to8 API
# Line 88  Line 68 
68  extern TRANSFER_16TO8COPY_PTR transfer_16to8copy;  extern TRANSFER_16TO8COPY_PTR transfer_16to8copy;
69    
70  /* Implemented functions */  /* Implemented functions */
71  TRANSFER_16TO8COPY transfer_16to8copy_c;  extern TRANSFER_16TO8COPY transfer_16to8copy_c;
72  TRANSFER_16TO8COPY transfer_16to8copy_mmx;  
73  TRANSFER_16TO8COPY transfer_16to8copy_ia64;  #ifdef ARCH_IS_IA32
74    extern TRANSFER_16TO8COPY transfer_16to8copy_mmx;
75    extern TRANSFER_16TO8COPY transfer_16to8copy_3dne;
76    #endif
77    
78    #ifdef ARCH_IS_IA64
79    extern TRANSFER_16TO8COPY transfer_16to8copy_ia64;
80    #endif
81    
82    #ifdef ARCH_IS_PPC
83    extern TRANSFER_16TO8COPY transfer_16to8copy_altivec_c;
84    #endif
85    
86  /*****************************************************************************  /*****************************************************************************
87   * transfer8to16 + substraction op API   * transfer8to16 + substraction *writeback* op API
88   ****************************************************************************/   ****************************************************************************/
89    
90  typedef void (TRANSFER_8TO16SUB) (int16_t * const dct,  typedef void (TRANSFER_8TO16SUB) (int16_t * const dct,
# Line 107  Line 98 
98  extern TRANSFER_8TO16SUB_PTR transfer_8to16sub;  extern TRANSFER_8TO16SUB_PTR transfer_8to16sub;
99    
100  /* Implemented functions */  /* Implemented functions */
101  TRANSFER_8TO16SUB transfer_8to16sub_c;  extern TRANSFER_8TO16SUB transfer_8to16sub_c;
102  TRANSFER_8TO16SUB transfer_8to16sub_mmx;  
103  TRANSFER_8TO16SUB transfer_8to16sub_ia64;  #ifdef ARCH_IS_IA32
104    extern TRANSFER_8TO16SUB transfer_8to16sub_mmx;
105    extern TRANSFER_8TO16SUB transfer_8to16sub_3dne;
106    #endif
107    
108    #ifdef ARCH_IS_IA64
109    extern TRANSFER_8TO16SUB transfer_8to16sub_ia64;
110    #endif
111    
112    #ifdef ARCH_IS_PPC
113    extern TRANSFER_8TO16SUB transfer_8to16sub_altivec_c;
114    #endif
115    
116    /*****************************************************************************
117     * transfer8to16 + substraction *readonly* op API
118     ****************************************************************************/
119    
120    typedef void (TRANSFER_8TO16SUBRO) (int16_t * const dct,
121                                                                      const uint8_t * const cur,
122                                                                      const uint8_t * ref,
123                                                                      const uint32_t stride);
124    
125    typedef TRANSFER_8TO16SUBRO *TRANSFER_8TO16SUBRO_PTR;
126    
127    /* Our global function pointer - Initialized in xvid.c */
128    extern TRANSFER_8TO16SUBRO_PTR transfer_8to16subro;
129    
130    /* Implemented functions */
131    extern TRANSFER_8TO16SUBRO transfer_8to16subro_c;
132    
133    #ifdef ARCH_IS_IA32
134    extern TRANSFER_8TO16SUBRO transfer_8to16subro_mmx;
135    extern TRANSFER_8TO16SUBRO transfer_8to16subro_3dne;
136    #endif
137    
138    #ifdef ARCH_IS_PPC
139    extern TRANSFER_8TO16SUBRO transfer_8to16subro_altivec_c;
140    #endif
141    
142  /*****************************************************************************  /*****************************************************************************
143   * transfer8to16 + substraction op API - Bidirectionnal Version   * transfer8to16 + substraction op API - Bidirectionnal Version
# Line 128  Line 156 
156    
157  /* Implemented functions */  /* Implemented functions */
158  TRANSFER_8TO16SUB2 transfer_8to16sub2_c;  TRANSFER_8TO16SUB2 transfer_8to16sub2_c;
 TRANSFER_8TO16SUB2 transfer_8to16sub2_mmx;  
 TRANSFER_8TO16SUB2 transfer_8to16sub2_xmm;  
 TRANSFER_8TO16SUB2 transfer_8to16sub2_ia64;  
159    
160    #ifdef ARCH_IS_IA32
161    extern TRANSFER_8TO16SUB2 transfer_8to16sub2_mmx;
162    extern TRANSFER_8TO16SUB2 transfer_8to16sub2_xmm;
163    extern TRANSFER_8TO16SUB2 transfer_8to16sub2_3dne;
164    #endif
165    
166    #ifdef ARCH_IS_IA64
167    extern TRANSFER_8TO16SUB2 transfer_8to16sub2_ia64;
168    #endif
169    
170    #ifdef ARCH_IS_PPC
171    extern TRANSFER_8TO16SUB2 transfer_8to16sub2_altivec_c;
172    #endif
173    
174    /*****************************************************************************
175     * transfer8to16 + substraction op API - Bidirectionnal Version *readonly*
176     ****************************************************************************/
177    
178    typedef void (TRANSFER_8TO16SUB2RO) (int16_t * const dct,
179                                                                       const uint8_t * const cur,
180                                                                       const uint8_t * ref1,
181                                                                       const uint8_t * ref2,
182                                                                       const uint32_t stride);
183    
184    typedef TRANSFER_8TO16SUB2RO *TRANSFER_8TO16SUB2RO_PTR;
185    
186    /* Our global function pointer - Initialized in xvid.c */
187    extern TRANSFER_8TO16SUB2RO_PTR transfer_8to16sub2ro;
188    
189    /* Implemented functions */
190    TRANSFER_8TO16SUB2RO transfer_8to16sub2ro_c;
191    
192    #ifdef ARCH_IS_IA32
193    extern TRANSFER_8TO16SUB2RO transfer_8to16sub2ro_xmm;
194    #endif
195    
196  /*****************************************************************************  /*****************************************************************************
197   * transfer16to8 + addition op API   * transfer16to8 + addition op API
# Line 147  Line 207 
207  extern TRANSFER_16TO8ADD_PTR transfer_16to8add;  extern TRANSFER_16TO8ADD_PTR transfer_16to8add;
208    
209  /* Implemented functions */  /* Implemented functions */
210  TRANSFER_16TO8ADD transfer_16to8add_c;  extern TRANSFER_16TO8ADD transfer_16to8add_c;
211  TRANSFER_16TO8ADD transfer_16to8add_mmx;  
212  TRANSFER_16TO8ADD transfer_16to8add_ia64;  #ifdef ARCH_IS_IA32
213    extern TRANSFER_16TO8ADD transfer_16to8add_mmx;
214    extern TRANSFER_16TO8ADD transfer_16to8add_3dne;
215    #endif
216    
217    #ifdef ARCH_IS_IA64
218    extern TRANSFER_16TO8ADD transfer_16to8add_ia64;
219    #endif
220    
221    #ifdef ARCH_IS_PPC
222    extern TRANSFER_16TO8ADD transfer_16to8add_altivec_c;
223    #endif
224    
225  /*****************************************************************************  /*****************************************************************************
226   * transfer8to8 + no op   * transfer8to8 + no op
# Line 165  Line 236 
236  extern TRANSFER8X8_COPY_PTR transfer8x8_copy;  extern TRANSFER8X8_COPY_PTR transfer8x8_copy;
237    
238  /* Implemented functions */  /* Implemented functions */
239  TRANSFER8X8_COPY transfer8x8_copy_c;  extern TRANSFER8X8_COPY transfer8x8_copy_c;
240  TRANSFER8X8_COPY transfer8x8_copy_mmx;  
241  TRANSFER8X8_COPY transfer8x8_copy_ia64;  #ifdef ARCH_IS_IA32
242    extern TRANSFER8X8_COPY transfer8x8_copy_mmx;
243    extern TRANSFER8X8_COPY transfer8x8_copy_3dne;
244    #endif
245    
246    #ifdef ARCH_IS_IA64
247    extern TRANSFER8X8_COPY transfer8x8_copy_ia64;
248    #endif
249    
250    #ifdef ARCH_IS_PPC
251    extern TRANSFER8X8_COPY transfer8x8_copy_altivec_c;
252    #endif
253    
254    static __inline void
255    transfer16x16_copy(uint8_t * const dst,
256                                            const uint8_t * const src,
257                                            const uint32_t stride)
258    {
259            transfer8x8_copy(dst, src, stride);
260            transfer8x8_copy(dst + 8, src + 8, stride);
261            transfer8x8_copy(dst + 8*stride, src + 8*stride, stride);
262            transfer8x8_copy(dst + 8*stride + 8, src + 8*stride + 8, stride);
263    }
264    
265    static __inline void
266    transfer32x32_copy(uint8_t * const dst,
267                                            const uint8_t * const src,
268                                            const uint32_t stride)
269    {
270            transfer16x16_copy(dst, src, stride);
271            transfer16x16_copy(dst + 16, src + 16, stride);
272            transfer16x16_copy(dst + 16*stride, src + 16*stride, stride);
273            transfer16x16_copy(dst + 16*stride + 16, src + 16*stride + 16, stride);
274    }
275    
276    
277  #endif  #endif

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.15

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