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.

163 lines
4.2KB

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