You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

142 lines
3.4KB

  1. #ifndef DSPUTIL_H
  2. #define DSPUTIL_H
  3. #include "common.h"
  4. /* dct code */
  5. typedef short DCTELEM;
  6. void jpeg_fdct_ifast (DCTELEM *data);
  7. void j_rev_dct (DCTELEM *data);
  8. void fdct_mmx(DCTELEM *block);
  9. void (*av_fdct)(DCTELEM *block);
  10. /* encoding scans */
  11. extern UINT8 ff_alternate_horizontal_scan[64];
  12. extern UINT8 ff_alternate_vertical_scan[64];
  13. extern UINT8 zigzag_direct[64];
  14. /* permutation table */
  15. extern UINT8 permutation[64];
  16. /* pixel operations */
  17. #define MAX_NEG_CROP 384
  18. /* temporary */
  19. extern UINT32 squareTbl[512];
  20. extern UINT8 cropTbl[256 + 2 * MAX_NEG_CROP];
  21. void dsputil_init(void);
  22. /* pixel ops : interface with DCT */
  23. extern void (*ff_idct)(DCTELEM *block);
  24. extern void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size);
  25. extern void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
  26. extern void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
  27. void get_pixels_c(DCTELEM *block, const UINT8 *pixels, int line_size);
  28. void put_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size);
  29. void add_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size);
  30. /* add and put pixel (decoding) */
  31. typedef void (*op_pixels_func)(UINT8 *block, const UINT8 *pixels, int line_size, int h);
  32. extern op_pixels_func put_pixels_tab[4];
  33. extern op_pixels_func avg_pixels_tab[4];
  34. extern op_pixels_func put_no_rnd_pixels_tab[4];
  35. extern op_pixels_func avg_no_rnd_pixels_tab[4];
  36. /* sub pixel (encoding) */
  37. extern void (*sub_pixels_tab[4])(DCTELEM *block, const UINT8 *pixels, int line_size, int h);
  38. #define sub_pixels_2(block, pixels, line_size, dxy) \
  39. sub_pixels_tab[dxy](block, pixels, line_size, 8)
  40. /* motion estimation */
  41. typedef int (*op_pixels_abs_func)(UINT8 *blk1, UINT8 *blk2, int line_size, int h);
  42. extern op_pixels_abs_func pix_abs16x16;
  43. extern op_pixels_abs_func pix_abs16x16_x2;
  44. extern op_pixels_abs_func pix_abs16x16_y2;
  45. extern op_pixels_abs_func pix_abs16x16_xy2;
  46. int pix_abs16x16_c(UINT8 *blk1, UINT8 *blk2, int lx, int h);
  47. int pix_abs16x16_x2_c(UINT8 *blk1, UINT8 *blk2, int lx, int h);
  48. int pix_abs16x16_y2_c(UINT8 *blk1, UINT8 *blk2, int lx, int h);
  49. int pix_abs16x16_xy2_c(UINT8 *blk1, UINT8 *blk2, int lx, int h);
  50. static inline int block_permute_op(int j)
  51. {
  52. return permutation[j];
  53. }
  54. void block_permute(INT16 *block);
  55. #if defined(HAVE_MMX)
  56. #define MM_MMX 0x0001 /* standard MMX */
  57. #define MM_3DNOW 0x0004 /* AMD 3DNOW */
  58. #define MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
  59. #define MM_SSE 0x0008 /* SSE functions */
  60. #define MM_SSE2 0x0010 /* PIV SSE2 functions */
  61. extern int mm_flags;
  62. int mm_support(void);
  63. static inline void emms(void)
  64. {
  65. __asm __volatile ("emms;":::"memory");
  66. }
  67. #define emms_c() \
  68. {\
  69. if (mm_flags & MM_MMX)\
  70. emms();\
  71. }
  72. #define __align8 __attribute__ ((aligned (8)))
  73. void dsputil_init_mmx(void);
  74. #elif defined(ARCH_ARMV4L)
  75. #define emms_c()
  76. /* This is to use 4 bytes read to the IDCT pointers for some 'zero'
  77. line ptimizations */
  78. #define __align8 __attribute__ ((aligned (4)))
  79. void dsputil_init_armv4l(void);
  80. #elif defined(HAVE_MLIB)
  81. #define emms_c()
  82. /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
  83. #define __align8 __attribute__ ((aligned (8)))
  84. void dsputil_init_mlib(void);
  85. #elif defined(ARCH_ALPHA)
  86. #define emms_c()
  87. #define __align8 __attribute__ ((aligned (8)))
  88. void dsputil_init_alpha(void);
  89. #else
  90. #define emms_c()
  91. #define __align8
  92. #endif
  93. #endif