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.

344 lines
11KB

  1. /*
  2. * DSP utils
  3. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #ifndef DSPUTIL_H
  20. #define DSPUTIL_H
  21. #include "common.h"
  22. #include "avcodec.h"
  23. //#define DEBUG
  24. /* dct code */
  25. typedef short DCTELEM;
  26. //typedef int DCTELEM;
  27. void fdct_ifast (DCTELEM *data);
  28. void ff_jpeg_fdct_islow (DCTELEM *data);
  29. void j_rev_dct (DCTELEM *data);
  30. void ff_fdct_mmx(DCTELEM *block);
  31. /* encoding scans */
  32. extern const UINT8 ff_alternate_horizontal_scan[64];
  33. extern const UINT8 ff_alternate_vertical_scan[64];
  34. extern const UINT8 ff_zigzag_direct[64];
  35. /* pixel operations */
  36. #define MAX_NEG_CROP 384
  37. /* temporary */
  38. extern UINT32 squareTbl[512];
  39. extern UINT8 cropTbl[256 + 2 * MAX_NEG_CROP];
  40. /* minimum alignment rules ;)
  41. if u notice errors in the align stuff, need more alignment for some asm code for some cpu
  42. or need to use a function with less aligned data then send a mail to the ffmpeg-dev list, ...
  43. !warning these alignments might not match reallity, (missing attribute((align)) stuff somewhere possible)
  44. i (michael) didnt check them, these are just the alignents which i think could be reached easily ...
  45. !future video codecs might need functions with less strict alignment
  46. */
  47. /*
  48. void get_pixels_c(DCTELEM *block, const UINT8 *pixels, int line_size);
  49. void diff_pixels_c(DCTELEM *block, const UINT8 *s1, const UINT8 *s2, int stride);
  50. void put_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size);
  51. void add_pixels_clamped_c(const DCTELEM *block, UINT8 *pixels, int line_size);
  52. void clear_blocks_c(DCTELEM *blocks);
  53. */
  54. /* add and put pixel (decoding) */
  55. // blocksizes for op_pixels_func are 8x4,8x8 16x8 16x16
  56. typedef void (*op_pixels_func)(UINT8 *block/*align width (8 or 16)*/, const UINT8 *pixels/*align 1*/, int line_size, int h);
  57. typedef void (*qpel_mc_func)(UINT8 *dst/*align width (8 or 16)*/, UINT8 *src/*align 1*/, int stride);
  58. #define DEF_OLD_QPEL(name)\
  59. void ff_put_ ## name (UINT8 *dst/*align width (8 or 16)*/, UINT8 *src/*align 1*/, int stride);\
  60. void ff_put_no_rnd_ ## name (UINT8 *dst/*align width (8 or 16)*/, UINT8 *src/*align 1*/, int stride);\
  61. void ff_avg_ ## name (UINT8 *dst/*align width (8 or 16)*/, UINT8 *src/*align 1*/, int stride);
  62. DEF_OLD_QPEL(qpel16_mc11_old_c)
  63. DEF_OLD_QPEL(qpel16_mc31_old_c)
  64. DEF_OLD_QPEL(qpel16_mc12_old_c)
  65. DEF_OLD_QPEL(qpel16_mc32_old_c)
  66. DEF_OLD_QPEL(qpel16_mc13_old_c)
  67. DEF_OLD_QPEL(qpel16_mc33_old_c)
  68. DEF_OLD_QPEL(qpel8_mc11_old_c)
  69. DEF_OLD_QPEL(qpel8_mc31_old_c)
  70. DEF_OLD_QPEL(qpel8_mc12_old_c)
  71. DEF_OLD_QPEL(qpel8_mc32_old_c)
  72. DEF_OLD_QPEL(qpel8_mc13_old_c)
  73. DEF_OLD_QPEL(qpel8_mc33_old_c)
  74. #define CALL_2X_PIXELS(a, b, n)\
  75. static void a(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
  76. b(block , pixels , line_size, h);\
  77. b(block+n, pixels+n, line_size, h);\
  78. }
  79. /* motion estimation */
  80. typedef int (*op_pixels_abs_func)(UINT8 *blk1/*align width (8 or 16)*/, UINT8 *blk2/*align 1*/, int line_size)/* __attribute__ ((const))*/;
  81. typedef int (*me_cmp_func)(void /*MpegEncContext*/ *s, UINT8 *blk1/*align width (8 or 16)*/, UINT8 *blk2/*align 1*/, int line_size)/* __attribute__ ((const))*/;
  82. typedef struct DSPContext {
  83. /* pixel ops : interface with DCT */
  84. void (*get_pixels)(DCTELEM *block/*align 16*/, const UINT8 *pixels/*align 8*/, int line_size);
  85. void (*diff_pixels)(DCTELEM *block/*align 16*/, const UINT8 *s1/*align 8*/, const UINT8 *s2/*align 8*/, int stride);
  86. void (*put_pixels_clamped)(const DCTELEM *block/*align 16*/, UINT8 *pixels/*align 8*/, int line_size);
  87. void (*add_pixels_clamped)(const DCTELEM *block/*align 16*/, UINT8 *pixels/*align 8*/, int line_size);
  88. void (*gmc1)(UINT8 *dst/*align 8*/, UINT8 *src/*align 1*/, int srcStride, int h, int x16, int y16, int rounder);
  89. void (*gmc )(UINT8 *dst/*align 8*/, UINT8 *src/*align 1*/, int stride, int h, int ox, int oy,
  90. int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height);
  91. void (*clear_blocks)(DCTELEM *blocks/*align 16*/);
  92. int (*pix_sum)(UINT8 * pix, int line_size);
  93. int (*pix_norm1)(UINT8 * pix, int line_size);
  94. me_cmp_func sad[2]; /* identical to pix_absAxA except additional void * */
  95. me_cmp_func sse[2];
  96. me_cmp_func hadamard8_diff[2];
  97. me_cmp_func dct_sad[2];
  98. me_cmp_func quant_psnr[2];
  99. me_cmp_func bit[2];
  100. me_cmp_func rd[2];
  101. int (*hadamard8_abs )(uint8_t *src, int stride, int mean);
  102. me_cmp_func me_pre_cmp[11];
  103. me_cmp_func me_cmp[11];
  104. me_cmp_func me_sub_cmp[11];
  105. me_cmp_func mb_cmp[11];
  106. /* maybe create an array for 16/8 functions */
  107. op_pixels_func put_pixels_tab[2][4];
  108. op_pixels_func avg_pixels_tab[2][4];
  109. op_pixels_func put_no_rnd_pixels_tab[2][4];
  110. op_pixels_func avg_no_rnd_pixels_tab[2][4];
  111. qpel_mc_func put_qpel_pixels_tab[2][16];
  112. qpel_mc_func avg_qpel_pixels_tab[2][16];
  113. qpel_mc_func put_no_rnd_qpel_pixels_tab[2][16];
  114. qpel_mc_func avg_no_rnd_qpel_pixels_tab[2][16];
  115. qpel_mc_func put_mspel_pixels_tab[8];
  116. op_pixels_abs_func pix_abs16x16;
  117. op_pixels_abs_func pix_abs16x16_x2;
  118. op_pixels_abs_func pix_abs16x16_y2;
  119. op_pixels_abs_func pix_abs16x16_xy2;
  120. op_pixels_abs_func pix_abs8x8;
  121. op_pixels_abs_func pix_abs8x8_x2;
  122. op_pixels_abs_func pix_abs8x8_y2;
  123. op_pixels_abs_func pix_abs8x8_xy2;
  124. /* huffyuv specific */
  125. void (*add_bytes)(uint8_t *dst/*align 16*/, uint8_t *src/*align 16*/, int w);
  126. void (*diff_bytes)(uint8_t *dst/*align 16*/, uint8_t *src1/*align 16*/, uint8_t *src2/*align 1*/,int w);
  127. } DSPContext;
  128. void dsputil_init(DSPContext* p, unsigned mask);
  129. /**
  130. * permute block according to permuatation.
  131. * @param last last non zero element in scantable order
  132. */
  133. void ff_block_permute(DCTELEM *block, UINT8 *permutation, const UINT8 *scantable, int last);
  134. #define emms_c()
  135. /* should be defined by architectures supporting
  136. one or more MultiMedia extension */
  137. int mm_support(void);
  138. #if defined(HAVE_MMX)
  139. #undef emms_c
  140. #define MM_MMX 0x0001 /* standard MMX */
  141. #define MM_3DNOW 0x0004 /* AMD 3DNOW */
  142. #define MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
  143. #define MM_SSE 0x0008 /* SSE functions */
  144. #define MM_SSE2 0x0010 /* PIV SSE2 functions */
  145. extern int mm_flags;
  146. void add_pixels_clamped_mmx(const DCTELEM *block, UINT8 *pixels, int line_size);
  147. void put_pixels_clamped_mmx(const DCTELEM *block, UINT8 *pixels, int line_size);
  148. static inline void emms(void)
  149. {
  150. __asm __volatile ("emms;":::"memory");
  151. }
  152. #define emms_c() \
  153. {\
  154. if (mm_flags & MM_MMX)\
  155. emms();\
  156. }
  157. #define __align8 __attribute__ ((aligned (8)))
  158. void dsputil_init_mmx(DSPContext* c, unsigned mask);
  159. void dsputil_set_bit_exact_mmx(DSPContext* c, unsigned mask);
  160. #elif defined(ARCH_ARMV4L)
  161. /* This is to use 4 bytes read to the IDCT pointers for some 'zero'
  162. line ptimizations */
  163. #define __align8 __attribute__ ((aligned (4)))
  164. void dsputil_init_armv4l(DSPContext* c, unsigned mask);
  165. #elif defined(HAVE_MLIB)
  166. /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
  167. #define __align8 __attribute__ ((aligned (8)))
  168. void dsputil_init_mlib(DSPContext* c, unsigned mask);
  169. #elif defined(ARCH_ALPHA)
  170. #define __align8 __attribute__ ((aligned (8)))
  171. void dsputil_init_alpha(DSPContext* c, unsigned mask);
  172. #elif defined(ARCH_POWERPC)
  173. #define MM_ALTIVEC 0x0001 /* standard AltiVec */
  174. extern int mm_flags;
  175. #if defined(HAVE_ALTIVEC) && !defined(CONFIG_DARWIN)
  176. #include <altivec.h>
  177. #endif
  178. #define __align8 __attribute__ ((aligned (16)))
  179. void dsputil_init_ppc(DSPContext* c, unsigned mask);
  180. #elif defined(HAVE_MMI)
  181. #define __align8 __attribute__ ((aligned (16)))
  182. void dsputil_init_mmi(DSPContext* c, unsigned mask);
  183. #else
  184. #define __align8
  185. #endif
  186. #ifdef __GNUC__
  187. struct unaligned_64 { uint64_t l; } __attribute__((packed));
  188. struct unaligned_32 { uint32_t l; } __attribute__((packed));
  189. #define LD32(a) (((const struct unaligned_32 *) (a))->l)
  190. #define LD64(a) (((const struct unaligned_64 *) (a))->l)
  191. #define ST32(a, b) (((struct unaligned_32 *) (a))->l) = (b)
  192. #else /* __GNUC__ */
  193. #define LD32(a) (*((uint32_t*)(a)))
  194. #define LD64(a) (*((uint64_t*)(a)))
  195. #define ST32(a, b) *((uint32_t*)(a)) = (b)
  196. #endif /* !__GNUC__ */
  197. /* PSNR */
  198. void get_psnr(UINT8 *orig_image[3], UINT8 *coded_image[3],
  199. int orig_linesize[3], int coded_linesize,
  200. AVCodecContext *avctx);
  201. /* FFT computation */
  202. /* NOTE: soon integer code will be added, so you must use the
  203. FFTSample type */
  204. typedef float FFTSample;
  205. typedef struct FFTComplex {
  206. FFTSample re, im;
  207. } FFTComplex;
  208. typedef struct FFTContext {
  209. int nbits;
  210. int inverse;
  211. uint16_t *revtab;
  212. FFTComplex *exptab;
  213. FFTComplex *exptab1; /* only used by SSE code */
  214. void (*fft_calc)(struct FFTContext *s, FFTComplex *z);
  215. } FFTContext;
  216. int fft_init(FFTContext *s, int nbits, int inverse);
  217. void fft_permute(FFTContext *s, FFTComplex *z);
  218. void fft_calc_c(FFTContext *s, FFTComplex *z);
  219. void fft_calc_sse(FFTContext *s, FFTComplex *z);
  220. void fft_calc_altivec(FFTContext *s, FFTComplex *z);
  221. static inline void fft_calc(FFTContext *s, FFTComplex *z)
  222. {
  223. s->fft_calc(s, z);
  224. }
  225. void fft_end(FFTContext *s);
  226. /* MDCT computation */
  227. typedef struct MDCTContext {
  228. int n; /* size of MDCT (i.e. number of input data * 2) */
  229. int nbits; /* n = 2^nbits */
  230. /* pre/post rotation tables */
  231. FFTSample *tcos;
  232. FFTSample *tsin;
  233. FFTContext fft;
  234. } MDCTContext;
  235. int ff_mdct_init(MDCTContext *s, int nbits, int inverse);
  236. void ff_imdct_calc(MDCTContext *s, FFTSample *output,
  237. const FFTSample *input, FFTSample *tmp);
  238. void ff_mdct_calc(MDCTContext *s, FFTSample *out,
  239. const FFTSample *input, FFTSample *tmp);
  240. void ff_mdct_end(MDCTContext *s);
  241. #define WARPER88_1616(name8, name16)\
  242. static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride){\
  243. return name8(s, dst , src , stride)\
  244. +name8(s, dst+8 , src+8 , stride)\
  245. +name8(s, dst +8*stride, src +8*stride, stride)\
  246. +name8(s, dst+8+8*stride, src+8+8*stride, stride);\
  247. }
  248. #ifndef HAVE_LRINTF
  249. /* XXX: add ISOC specific test to avoid specific BSD testing. */
  250. /* better than nothing implementation. */
  251. /* btw, rintf() is existing on fbsd too -- alex */
  252. static inline long int lrintf(float x)
  253. {
  254. #ifdef CONFIG_WIN32
  255. /* XXX: incorrect, but make it compile */
  256. return (int)(x);
  257. #else
  258. return (int)(rint(x));
  259. #endif
  260. }
  261. #endif
  262. #endif