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.

114 lines
2.9KB

  1. #ifndef DSPUTIL_H
  2. #define DSPUTIL_H
  3. #include "common.h"
  4. #include <inttypes.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. /* pixel operations */
  16. #define MAX_NEG_CROP 384
  17. /* temporary */
  18. extern UINT32 squareTbl[512];
  19. extern UINT8 cropTbl[256 + 2 * MAX_NEG_CROP];
  20. void dsputil_init(void);
  21. /* pixel ops : interface with DCT */
  22. extern void (*ff_idct)(DCTELEM *block);
  23. extern void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size);
  24. extern void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
  25. extern void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
  26. void get_pixels_c(DCTELEM *block, const UINT8 *pixels, int line_size);
  27. void put_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size);
  28. void add_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size);
  29. /* add and put pixel (decoding) */
  30. typedef void (*op_pixels_func)(UINT8 *block, const UINT8 *pixels, int line_size, int h);
  31. extern op_pixels_func put_pixels_tab[4];
  32. extern op_pixels_func avg_pixels_tab[4];
  33. extern op_pixels_func put_no_rnd_pixels_tab[4];
  34. extern op_pixels_func avg_no_rnd_pixels_tab[4];
  35. /* sub pixel (encoding) */
  36. extern void (*sub_pixels_tab[4])(DCTELEM *block, const UINT8 *pixels, int line_size, int h);
  37. #define sub_pixels_2(block, pixels, line_size, dxy) \
  38. sub_pixels_tab[dxy](block, pixels, line_size, 8)
  39. /* motion estimation */
  40. typedef int (*op_pixels_abs_func)(UINT8 *blk1, UINT8 *blk2, int line_size, int h);
  41. extern op_pixels_abs_func pix_abs16x16;
  42. extern op_pixels_abs_func pix_abs16x16_x2;
  43. extern op_pixels_abs_func pix_abs16x16_y2;
  44. extern op_pixels_abs_func pix_abs16x16_xy2;
  45. int pix_abs16x16_c(UINT8 *blk1, UINT8 *blk2, int lx, int h);
  46. int pix_abs16x16_x2_c(UINT8 *blk1, UINT8 *blk2, int lx, int h);
  47. int pix_abs16x16_y2_c(UINT8 *blk1, UINT8 *blk2, int lx, int h);
  48. int pix_abs16x16_xy2_c(UINT8 *blk1, UINT8 *blk2, int lx, int h);
  49. static inline int block_permute_op(int j)
  50. {
  51. return (j & 0x38) | ((j & 6) >> 1) | ((j & 1) << 2);
  52. }
  53. void block_permute(INT16 *block);
  54. #ifdef HAVE_MMX
  55. #define MM_MMX 0x0001 /* standard MMX */
  56. #define MM_3DNOW 0x0004 /* AMD 3DNOW */
  57. #define MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
  58. #define MM_SSE 0x0008 /* SSE functions */
  59. #define MM_SSE2 0x0010 /* PIV SSE2 functions */
  60. extern int mm_flags;
  61. int mm_support(void);
  62. static inline void emms(void)
  63. {
  64. __asm __volatile ("emms;":::"memory");
  65. }
  66. #define emms_c() \
  67. {\
  68. if (mm_flags & MM_MMX)\
  69. emms();\
  70. }
  71. #define __align8 __attribute__ ((aligned (8)))
  72. void dsputil_init_mmx(void);
  73. #else
  74. #define emms_c()
  75. #define __align8
  76. #endif
  77. #endif