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.

157 lines
4.1KB

  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. /* motion estimation */
  47. typedef int (*op_pixels_abs_func)(UINT8 *blk1, UINT8 *blk2, int line_size);
  48. extern op_pixels_abs_func pix_abs16x16;
  49. extern op_pixels_abs_func pix_abs16x16_x2;
  50. extern op_pixels_abs_func pix_abs16x16_y2;
  51. extern op_pixels_abs_func pix_abs16x16_xy2;
  52. extern op_pixels_abs_func pix_abs8x8;
  53. extern op_pixels_abs_func pix_abs8x8_x2;
  54. extern op_pixels_abs_func pix_abs8x8_y2;
  55. extern op_pixels_abs_func pix_abs8x8_xy2;
  56. int pix_abs16x16_c(UINT8 *blk1, UINT8 *blk2, int lx);
  57. int pix_abs16x16_x2_c(UINT8 *blk1, UINT8 *blk2, int lx);
  58. int pix_abs16x16_y2_c(UINT8 *blk1, UINT8 *blk2, int lx);
  59. int pix_abs16x16_xy2_c(UINT8 *blk1, UINT8 *blk2, int lx);
  60. static inline int block_permute_op(int j)
  61. {
  62. return permutation[j];
  63. }
  64. void block_permute(INT16 *block);
  65. #if defined(HAVE_MMX)
  66. #define MM_MMX 0x0001 /* standard MMX */
  67. #define MM_3DNOW 0x0004 /* AMD 3DNOW */
  68. #define MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
  69. #define MM_SSE 0x0008 /* SSE functions */
  70. #define MM_SSE2 0x0010 /* PIV SSE2 functions */
  71. extern int mm_flags;
  72. int mm_support(void);
  73. static inline void emms(void)
  74. {
  75. __asm __volatile ("emms;":::"memory");
  76. }
  77. #define emms_c() \
  78. {\
  79. if (mm_flags & MM_MMX)\
  80. emms();\
  81. }
  82. #define __align8 __attribute__ ((aligned (8)))
  83. void dsputil_init_mmx(void);
  84. void dsputil_set_bit_exact_mmx(void);
  85. #elif defined(ARCH_ARMV4L)
  86. #define emms_c()
  87. /* This is to use 4 bytes read to the IDCT pointers for some 'zero'
  88. line ptimizations */
  89. #define __align8 __attribute__ ((aligned (4)))
  90. void dsputil_init_armv4l(void);
  91. #elif defined(HAVE_MLIB)
  92. #define emms_c()
  93. /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
  94. #define __align8 __attribute__ ((aligned (8)))
  95. void dsputil_init_mlib(void);
  96. #elif defined(ARCH_ALPHA)
  97. #define emms_c()
  98. #define __align8 __attribute__ ((aligned (8)))
  99. void dsputil_init_alpha(void);
  100. #else
  101. #define emms_c()
  102. #define __align8
  103. #endif
  104. /* PSNR */
  105. void get_psnr(UINT8 *orig_image[3], UINT8 *coded_image[3],
  106. int orig_linesize[3], int coded_linesize,
  107. AVCodecContext *avctx);
  108. #endif