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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (download) (annotate)
Wed Jun 12 20:38:41 2002 UTC (21 years, 9 months ago) by edgomez
Branch: MAIN
Changes since 1.3: +29 -28 lines
Cosmetic - CodingStyle Applied - Legal Headers will be added later
#ifndef _MEM_TRANSFER_H
#define _MEM_TRANSFER_H

// transfer8to16
typedef void (TRANSFER_8TO16COPY) (int16_t * const dst,
								   const uint8_t * const src,
								   uint32_t stride);
typedef TRANSFER_8TO16COPY *TRANSFER_8TO16COPY_PTR;
extern TRANSFER_8TO16COPY_PTR transfer_8to16copy;
TRANSFER_8TO16COPY transfer_8to16copy_c;
TRANSFER_8TO16COPY transfer_8to16copy_mmx;

// transfer16to8
typedef void (TRANSFER_16TO8COPY) (uint8_t * const dst,
								   const int16_t * const src,
								   uint32_t stride);
typedef TRANSFER_16TO8COPY *TRANSFER_16TO8COPY_PTR;
extern TRANSFER_16TO8COPY_PTR transfer_16to8copy;
TRANSFER_16TO8COPY transfer_16to8copy_c;
TRANSFER_16TO8COPY transfer_16to8copy_mmx;

// transfer8to16sub
typedef void (TRANSFER_8TO16SUB) (int16_t * const dct,
								  uint8_t * const cur,
								  const uint8_t * ref,
								  const uint32_t stride);
typedef TRANSFER_8TO16SUB *TRANSFER_8TO16SUB_PTR;

extern TRANSFER_8TO16SUB_PTR transfer_8to16sub;
TRANSFER_8TO16SUB transfer_8to16sub_c;
TRANSFER_8TO16SUB transfer_8to16sub_mmx;

// transfer8to16sub2
typedef void (TRANSFER_8TO16SUB2) (int16_t * const dct,
								   uint8_t * const cur,
								   const uint8_t * ref1,
								   const uint8_t * ref2,
								   const uint32_t stride);
typedef TRANSFER_8TO16SUB2 *TRANSFER_8TO16SUB2_PTR;

extern TRANSFER_8TO16SUB2_PTR transfer_8to16sub2;
TRANSFER_8TO16SUB2 transfer_8to16sub2_c;

//TRANSFER_8TO16SUB2 transfer_8to16sub2_mmx;


// transfer16to8add
typedef void (TRANSFER_16TO8ADD) (uint8_t * const dst,
								  const int16_t * const src,
								  uint32_t stride);
typedef TRANSFER_16TO8ADD *TRANSFER_16TO8ADD_PTR;
extern TRANSFER_16TO8ADD_PTR transfer_16to8add;
TRANSFER_16TO8ADD transfer_16to8add_c;
TRANSFER_16TO8ADD transfer_16to8add_mmx;

// transfer8x8_copy
typedef void (TRANSFER8X8_COPY) (uint8_t * const dst,
								 const uint8_t * const src,
								 const uint32_t stride);
typedef TRANSFER8X8_COPY *TRANSFER8X8_COPY_PTR;
extern TRANSFER8X8_COPY_PTR transfer8x8_copy;
TRANSFER8X8_COPY transfer8x8_copy_c;
TRANSFER8X8_COPY transfer8x8_copy_mmx;

#endif							/* _MEM_TRANSFER_H_ */

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