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.

148 lines
3.6KB

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