[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.8.2.2, Thu Dec 19 00:41:02 2002 UTC revision 1.12.2.1, Mon Jun 9 13:55:44 2003 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   *  This program is an implementation of a part of one or more MPEG-4   *  Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
  *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending  
  *  to use this software module in hardware or software products are  
  *  advised that its use may infringe existing patents or copyrights, and  
  *  any such use would be at such party's own risk.  The original  
  *  developer of this software module and his/her company, and subsequent  
  *  editors and their companies, will have no liability for use of this  
  *  software or modifications or derivatives thereof.  
7   *   *
8   *  This program is free software ; you can redistribute it and/or modify   *  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   *  it under the terms of the GNU General Public License as published by
# Line 26  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   *   *
  ****************************************************************************/  
 /*****************************************************************************  
  *  
  *  History  
  *  
  *  - Sun Jun 16 00:12:49 2002 Added legal header  
  *                             Cosmetic  
22   *  $Id$   *  $Id$
23   *   *
24   ****************************************************************************/   ****************************************************************************/
25    
   
26  #ifndef _MEM_TRANSFER_H  #ifndef _MEM_TRANSFER_H
27  #define _MEM_TRANSFER_H  #define _MEM_TRANSFER_H
28    
# Line 79  Line 64 
64  TRANSFER_16TO8COPY transfer_16to8copy_ia64;  TRANSFER_16TO8COPY transfer_16to8copy_ia64;
65    
66  /*****************************************************************************  /*****************************************************************************
67   * transfer8to16 + substraction op API   * transfer8to16 + substraction *writeback* op API
68   ****************************************************************************/   ****************************************************************************/
69    
70  typedef void (TRANSFER_8TO16SUB) (int16_t * const dct,  typedef void (TRANSFER_8TO16SUB) (int16_t * const dct,
# Line 99  Line 84 
84  TRANSFER_8TO16SUB transfer_8to16sub_ia64;  TRANSFER_8TO16SUB transfer_8to16sub_ia64;
85    
86  /*****************************************************************************  /*****************************************************************************
87     * transfer8to16 + substraction *readonly* op API
88     ****************************************************************************/
89    
90    typedef void (TRANSFER_8TO16SUBRO) (int16_t * const dct,
91                                                                      const uint8_t * const cur,
92                                                                      const uint8_t * ref,
93                                                                      const uint32_t stride);
94    
95    typedef TRANSFER_8TO16SUBRO *TRANSFER_8TO16SUBRO_PTR;
96    
97    /* Our global function pointer - Initialized in xvid.c */
98    extern TRANSFER_8TO16SUBRO_PTR transfer_8to16subro;
99    
100    /* Implemented functions */
101    TRANSFER_8TO16SUBRO transfer_8to16subro_c;
102    TRANSFER_8TO16SUBRO transfer_8to16subro_mmx;
103    TRANSFER_8TO16SUBRO transfer_8to16subro_3dne;
104    
105    /*****************************************************************************
106   * transfer8to16 + substraction op API - Bidirectionnal Version   * transfer8to16 + substraction op API - Bidirectionnal Version
107   ****************************************************************************/   ****************************************************************************/
108    

Legend:
Removed from v.1.8.2.2  
changed lines
  Added in v.1.12.2.1

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