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.

578 lines
20KB

  1. /*
  2. * DSP utils
  3. * Copyright (c) 2000, 2001, 2002 Fabrice Bellard.
  4. * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. /**
  21. * @file dsputil.h
  22. * DSP utils.
  23. * note, many functions in here may use MMX which trashes the FPU state, it is
  24. * absolutely necessary to call emms_c() between dsp & float/double code
  25. */
  26. #ifndef DSPUTIL_H
  27. #define DSPUTIL_H
  28. #include "common.h"
  29. #include "avcodec.h"
  30. //#define DEBUG
  31. /* dct code */
  32. typedef short DCTELEM;
  33. void fdct_ifast (DCTELEM *data);
  34. void fdct_ifast248 (DCTELEM *data);
  35. void ff_jpeg_fdct_islow (DCTELEM *data);
  36. void ff_fdct248_islow (DCTELEM *data);
  37. void j_rev_dct (DCTELEM *data);
  38. void ff_fdct_mmx(DCTELEM *block);
  39. void ff_fdct_mmx2(DCTELEM *block);
  40. void ff_fdct_sse2(DCTELEM *block);
  41. /* encoding scans */
  42. extern const uint8_t ff_alternate_horizontal_scan[64];
  43. extern const uint8_t ff_alternate_vertical_scan[64];
  44. extern const uint8_t ff_zigzag_direct[64];
  45. extern const uint8_t ff_zigzag248_direct[64];
  46. /* pixel operations */
  47. #define MAX_NEG_CROP 1024
  48. /* temporary */
  49. extern uint32_t squareTbl[512];
  50. extern uint8_t cropTbl[256 + 2 * MAX_NEG_CROP];
  51. /* VP3 DSP functions */
  52. void vp3_dsp_init_c(void);
  53. void vp3_idct_c(int16_t *input_data, int16_t *dequant_matrix,
  54. int coeff_count, DCTELEM *output_data);
  55. void vp3_dsp_init_mmx(void);
  56. void vp3_idct_mmx(int16_t *input_data, int16_t *dequant_matrix,
  57. int coeff_count, DCTELEM *output_data);
  58. void vp3_dsp_init_sse2(void);
  59. void vp3_idct_sse2(int16_t *input_data, int16_t *dequant_matrix,
  60. int coeff_count, DCTELEM *output_data);
  61. /* minimum alignment rules ;)
  62. if u notice errors in the align stuff, need more alignment for some asm code for some cpu
  63. or need to use a function with less aligned data then send a mail to the ffmpeg-dev list, ...
  64. !warning these alignments might not match reallity, (missing attribute((align)) stuff somewhere possible)
  65. i (michael) didnt check them, these are just the alignents which i think could be reached easily ...
  66. !future video codecs might need functions with less strict alignment
  67. */
  68. /*
  69. void get_pixels_c(DCTELEM *block, const uint8_t *pixels, int line_size);
  70. void diff_pixels_c(DCTELEM *block, const uint8_t *s1, const uint8_t *s2, int stride);
  71. void put_pixels_clamped_c(const DCTELEM *block, uint8_t *pixels, int line_size);
  72. void add_pixels_clamped_c(const DCTELEM *block, uint8_t *pixels, int line_size);
  73. void clear_blocks_c(DCTELEM *blocks);
  74. */
  75. /* add and put pixel (decoding) */
  76. // blocksizes for op_pixels_func are 8x4,8x8 16x8 16x16
  77. //h for op_pixels_func is limited to {width/2, width} but never larger than 16 and never smaller then 4
  78. typedef void (*op_pixels_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, int line_size, int h);
  79. typedef void (*tpel_mc_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, int line_size, int w, int h);
  80. typedef void (*qpel_mc_func)(uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);
  81. typedef void (*h264_chroma_mc_func)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x, int y);
  82. #define DEF_OLD_QPEL(name)\
  83. void ff_put_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\
  84. void ff_put_no_rnd_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\
  85. void ff_avg_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);
  86. DEF_OLD_QPEL(qpel16_mc11_old_c)
  87. DEF_OLD_QPEL(qpel16_mc31_old_c)
  88. DEF_OLD_QPEL(qpel16_mc12_old_c)
  89. DEF_OLD_QPEL(qpel16_mc32_old_c)
  90. DEF_OLD_QPEL(qpel16_mc13_old_c)
  91. DEF_OLD_QPEL(qpel16_mc33_old_c)
  92. DEF_OLD_QPEL(qpel8_mc11_old_c)
  93. DEF_OLD_QPEL(qpel8_mc31_old_c)
  94. DEF_OLD_QPEL(qpel8_mc12_old_c)
  95. DEF_OLD_QPEL(qpel8_mc32_old_c)
  96. DEF_OLD_QPEL(qpel8_mc13_old_c)
  97. DEF_OLD_QPEL(qpel8_mc33_old_c)
  98. #define CALL_2X_PIXELS(a, b, n)\
  99. static void a(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
  100. b(block , pixels , line_size, h);\
  101. b(block+n, pixels+n, line_size, h);\
  102. }
  103. /* motion estimation */
  104. // h is limited to {width/2, width, 2*width} but never larger than 16 and never smaller then 2
  105. // allthough currently h<4 is not used as functions with width <8 are not used and neither implemented
  106. typedef int (*me_cmp_func)(void /*MpegEncContext*/ *s, uint8_t *blk1/*align width (8 or 16)*/, uint8_t *blk2/*align 1*/, int line_size, int h)/* __attribute__ ((const))*/;
  107. /**
  108. * DSPContext.
  109. */
  110. typedef struct DSPContext {
  111. /* pixel ops : interface with DCT */
  112. void (*get_pixels)(DCTELEM *block/*align 16*/, const uint8_t *pixels/*align 8*/, int line_size);
  113. void (*diff_pixels)(DCTELEM *block/*align 16*/, const uint8_t *s1/*align 8*/, const uint8_t *s2/*align 8*/, int stride);
  114. void (*put_pixels_clamped)(const DCTELEM *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  115. void (*put_signed_pixels_clamped)(const DCTELEM *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  116. void (*add_pixels_clamped)(const DCTELEM *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  117. /**
  118. * translational global motion compensation.
  119. */
  120. void (*gmc1)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x16, int y16, int rounder);
  121. /**
  122. * global motion compensation.
  123. */
  124. void (*gmc )(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int ox, int oy,
  125. int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height);
  126. void (*clear_blocks)(DCTELEM *blocks/*align 16*/);
  127. int (*pix_sum)(uint8_t * pix, int line_size);
  128. int (*pix_norm1)(uint8_t * pix, int line_size);
  129. // 16x16 8x8 4x4 2x2 16x8 8x4 4x2 8x16 4x8 2x4
  130. me_cmp_func sad[5]; /* identical to pix_absAxA except additional void * */
  131. me_cmp_func sse[5];
  132. me_cmp_func hadamard8_diff[5];
  133. me_cmp_func dct_sad[5];
  134. me_cmp_func quant_psnr[5];
  135. me_cmp_func bit[5];
  136. me_cmp_func rd[5];
  137. me_cmp_func vsad[5];
  138. me_cmp_func vsse[5];
  139. me_cmp_func nsse[5];
  140. me_cmp_func me_pre_cmp[5];
  141. me_cmp_func me_cmp[5];
  142. me_cmp_func me_sub_cmp[5];
  143. me_cmp_func mb_cmp[5];
  144. me_cmp_func ildct_cmp[5]; //only width 16 used
  145. /**
  146. * Halfpel motion compensation with rounding (a+b+1)>>1.
  147. * this is an array[4][4] of motion compensation funcions for 4
  148. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  149. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  150. * @param block destination where the result is stored
  151. * @param pixels source
  152. * @param line_size number of bytes in a horizontal line of block
  153. * @param h height
  154. */
  155. op_pixels_func put_pixels_tab[4][4];
  156. /**
  157. * Halfpel motion compensation with rounding (a+b+1)>>1.
  158. * This is an array[4][4] of motion compensation functions for 4
  159. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  160. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  161. * @param block destination into which the result is averaged (a+b+1)>>1
  162. * @param pixels source
  163. * @param line_size number of bytes in a horizontal line of block
  164. * @param h height
  165. */
  166. op_pixels_func avg_pixels_tab[4][4];
  167. /**
  168. * Halfpel motion compensation with no rounding (a+b)>>1.
  169. * this is an array[2][4] of motion compensation funcions for 2
  170. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  171. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  172. * @param block destination where the result is stored
  173. * @param pixels source
  174. * @param line_size number of bytes in a horizontal line of block
  175. * @param h height
  176. */
  177. op_pixels_func put_no_rnd_pixels_tab[4][4];
  178. /**
  179. * Halfpel motion compensation with no rounding (a+b)>>1.
  180. * this is an array[2][4] of motion compensation funcions for 2
  181. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  182. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  183. * @param block destination into which the result is averaged (a+b)>>1
  184. * @param pixels source
  185. * @param line_size number of bytes in a horizontal line of block
  186. * @param h height
  187. */
  188. op_pixels_func avg_no_rnd_pixels_tab[4][4];
  189. void (*put_no_rnd_pixels_l2[2])(uint8_t *block/*align width (8 or 16)*/, const uint8_t *a/*align 1*/, const uint8_t *b/*align 1*/, int line_size, int h);
  190. /**
  191. * Thirdpel motion compensation with rounding (a+b+1)>>1.
  192. * this is an array[12] of motion compensation funcions for the 9 thirdpel positions<br>
  193. * *pixels_tab[ xthirdpel + 4*ythirdpel ]
  194. * @param block destination where the result is stored
  195. * @param pixels source
  196. * @param line_size number of bytes in a horizontal line of block
  197. * @param h height
  198. */
  199. tpel_mc_func put_tpel_pixels_tab[11]; //FIXME individual func ptr per width?
  200. tpel_mc_func avg_tpel_pixels_tab[11]; //FIXME individual func ptr per width?
  201. qpel_mc_func put_qpel_pixels_tab[2][16];
  202. qpel_mc_func avg_qpel_pixels_tab[2][16];
  203. qpel_mc_func put_no_rnd_qpel_pixels_tab[2][16];
  204. qpel_mc_func avg_no_rnd_qpel_pixels_tab[2][16];
  205. qpel_mc_func put_mspel_pixels_tab[8];
  206. /**
  207. * h264 Chram MC
  208. */
  209. h264_chroma_mc_func put_h264_chroma_pixels_tab[3];
  210. h264_chroma_mc_func avg_h264_chroma_pixels_tab[3];
  211. qpel_mc_func put_h264_qpel_pixels_tab[3][16];
  212. qpel_mc_func avg_h264_qpel_pixels_tab[3][16];
  213. me_cmp_func pix_abs[2][4];
  214. /* huffyuv specific */
  215. void (*add_bytes)(uint8_t *dst/*align 16*/, uint8_t *src/*align 16*/, int w);
  216. void (*diff_bytes)(uint8_t *dst/*align 16*/, uint8_t *src1/*align 16*/, uint8_t *src2/*align 1*/,int w);
  217. /**
  218. * subtract huffyuv's variant of median prediction
  219. * note, this might read from src1[-1], src2[-1]
  220. */
  221. void (*sub_hfyu_median_prediction)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top);
  222. void (*bswap_buf)(uint32_t *dst, uint32_t *src, int w);
  223. void (*h263_v_loop_filter)(uint8_t *src, int stride, int qscale);
  224. void (*h263_h_loop_filter)(uint8_t *src, int stride, int qscale);
  225. void (*h261_loop_filter)(uint8_t *src, int stride);
  226. /* (I)DCT */
  227. void (*fdct)(DCTELEM *block/* align 16*/);
  228. void (*fdct248)(DCTELEM *block/* align 16*/);
  229. /* IDCT really*/
  230. void (*idct)(DCTELEM *block/* align 16*/);
  231. /**
  232. * block -> idct -> clip to unsigned 8 bit -> dest.
  233. * (-1392, 0, 0, ...) -> idct -> (-174, -174, ...) -> put -> (0, 0, ...)
  234. * @param line_size size in bytes of a horizotal line of dest
  235. */
  236. void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  237. /**
  238. * block -> idct -> add dest -> clip to unsigned 8 bit -> dest.
  239. * @param line_size size in bytes of a horizotal line of dest
  240. */
  241. void (*idct_add)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  242. /**
  243. * idct input permutation.
  244. * several optimized IDCTs need a permutated input (relative to the normal order of the reference
  245. * IDCT)
  246. * this permutation must be performed before the idct_put/add, note, normally this can be merged
  247. * with the zigzag/alternate scan<br>
  248. * an example to avoid confusion:
  249. * - (->decode coeffs -> zigzag reorder -> dequant -> reference idct ->...)
  250. * - (x -> referece dct -> reference idct -> x)
  251. * - (x -> referece dct -> simple_mmx_perm = idct_permutation -> simple_idct_mmx -> x)
  252. * - (->decode coeffs -> zigzag reorder -> simple_mmx_perm -> dequant -> simple_idct_mmx ->...)
  253. */
  254. uint8_t idct_permutation[64];
  255. int idct_permutation_type;
  256. #define FF_NO_IDCT_PERM 1
  257. #define FF_LIBMPEG2_IDCT_PERM 2
  258. #define FF_SIMPLE_IDCT_PERM 3
  259. #define FF_TRANSPOSE_IDCT_PERM 4
  260. int (*try_8x8basis)(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale);
  261. void (*add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale);
  262. #define BASIS_SHIFT 16
  263. #define RECON_SHIFT 6
  264. /**
  265. * This function handles any initialization for the VP3 DSP functions.
  266. */
  267. void (*vp3_dsp_init)(void);
  268. /**
  269. * This function is responsible for taking a block of zigzag'd,
  270. * quantized DCT coefficients and reconstructing the original block of
  271. * samples.
  272. * @param input_data 64 zigzag'd, quantized DCT coefficients
  273. * @param dequant_matrix 64 zigzag'd quantizer coefficients
  274. * @param coeff_count index of the last coefficient
  275. * @param output_samples space for 64 DCTELEMs where the transformed
  276. * samples will be stored
  277. */
  278. void (*vp3_idct)(int16_t *input_data, int16_t *dequant_matrix,
  279. int coeff_count, DCTELEM *output_samples);
  280. } DSPContext;
  281. void dsputil_static_init(void);
  282. void dsputil_init(DSPContext* p, AVCodecContext *avctx);
  283. /**
  284. * permute block according to permuatation.
  285. * @param last last non zero element in scantable order
  286. */
  287. void ff_block_permute(DCTELEM *block, uint8_t *permutation, const uint8_t *scantable, int last);
  288. void ff_set_cmp(DSPContext* c, me_cmp_func *cmp, int type);
  289. #define BYTE_VEC32(c) ((c)*0x01010101UL)
  290. static inline uint32_t rnd_avg32(uint32_t a, uint32_t b)
  291. {
  292. return (a | b) - (((a ^ b) & ~BYTE_VEC32(0x01)) >> 1);
  293. }
  294. static inline uint32_t no_rnd_avg32(uint32_t a, uint32_t b)
  295. {
  296. return (a & b) + (((a ^ b) & ~BYTE_VEC32(0x01)) >> 1);
  297. }
  298. /**
  299. * Empty mmx state.
  300. * this must be called between any dsp function and float/double code.
  301. * for example sin(); dsp->idct_put(); emms_c(); cos()
  302. */
  303. #define emms_c()
  304. /* should be defined by architectures supporting
  305. one or more MultiMedia extension */
  306. int mm_support(void);
  307. #define __align16 __attribute__ ((aligned (16)))
  308. #if defined(HAVE_MMX)
  309. #undef emms_c
  310. #define MM_MMX 0x0001 /* standard MMX */
  311. #define MM_3DNOW 0x0004 /* AMD 3DNOW */
  312. #define MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
  313. #define MM_SSE 0x0008 /* SSE functions */
  314. #define MM_SSE2 0x0010 /* PIV SSE2 functions */
  315. extern int mm_flags;
  316. void add_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size);
  317. void put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size);
  318. void put_signed_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size);
  319. static inline void emms(void)
  320. {
  321. __asm __volatile ("emms;":::"memory");
  322. }
  323. #define emms_c() \
  324. {\
  325. if (mm_flags & MM_MMX)\
  326. emms();\
  327. }
  328. #define __align8 __attribute__ ((aligned (8)))
  329. void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx);
  330. void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx);
  331. #elif defined(ARCH_ARMV4L)
  332. /* This is to use 4 bytes read to the IDCT pointers for some 'zero'
  333. line optimizations */
  334. #define __align8 __attribute__ ((aligned (4)))
  335. void dsputil_init_armv4l(DSPContext* c, AVCodecContext *avctx);
  336. #elif defined(HAVE_MLIB)
  337. /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
  338. #define __align8 __attribute__ ((aligned (8)))
  339. void dsputil_init_mlib(DSPContext* c, AVCodecContext *avctx);
  340. #elif defined(ARCH_SPARC)
  341. /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
  342. #define __align8 __attribute__ ((aligned (8)))
  343. void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx);
  344. #elif defined(ARCH_ALPHA)
  345. #define __align8 __attribute__ ((aligned (8)))
  346. void dsputil_init_alpha(DSPContext* c, AVCodecContext *avctx);
  347. #elif defined(ARCH_POWERPC)
  348. #define MM_ALTIVEC 0x0001 /* standard AltiVec */
  349. extern int mm_flags;
  350. #if defined(HAVE_ALTIVEC) && !defined(CONFIG_DARWIN)
  351. #define pixel altivec_pixel
  352. #include <altivec.h>
  353. #undef pixel
  354. #endif
  355. #define __align8 __attribute__ ((aligned (16)))
  356. void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx);
  357. #elif defined(HAVE_MMI)
  358. #define __align8 __attribute__ ((aligned (16)))
  359. void dsputil_init_mmi(DSPContext* c, AVCodecContext *avctx);
  360. #elif defined(ARCH_SH4)
  361. #define __align8 __attribute__ ((aligned (8)))
  362. void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx);
  363. #else
  364. #define __align8
  365. #endif
  366. #ifdef __GNUC__
  367. struct unaligned_64 { uint64_t l; } __attribute__((packed));
  368. struct unaligned_32 { uint32_t l; } __attribute__((packed));
  369. struct unaligned_16 { uint16_t l; } __attribute__((packed));
  370. #define LD16(a) (((const struct unaligned_16 *) (a))->l)
  371. #define LD32(a) (((const struct unaligned_32 *) (a))->l)
  372. #define LD64(a) (((const struct unaligned_64 *) (a))->l)
  373. #define ST32(a, b) (((struct unaligned_32 *) (a))->l) = (b)
  374. #else /* __GNUC__ */
  375. #define LD16(a) (*((uint16_t*)(a)))
  376. #define LD32(a) (*((uint32_t*)(a)))
  377. #define LD64(a) (*((uint64_t*)(a)))
  378. #define ST32(a, b) *((uint32_t*)(a)) = (b)
  379. #endif /* !__GNUC__ */
  380. /* PSNR */
  381. void get_psnr(uint8_t *orig_image[3], uint8_t *coded_image[3],
  382. int orig_linesize[3], int coded_linesize,
  383. AVCodecContext *avctx);
  384. /* FFT computation */
  385. /* NOTE: soon integer code will be added, so you must use the
  386. FFTSample type */
  387. typedef float FFTSample;
  388. typedef struct FFTComplex {
  389. FFTSample re, im;
  390. } FFTComplex;
  391. typedef struct FFTContext {
  392. int nbits;
  393. int inverse;
  394. uint16_t *revtab;
  395. FFTComplex *exptab;
  396. FFTComplex *exptab1; /* only used by SSE code */
  397. void (*fft_calc)(struct FFTContext *s, FFTComplex *z);
  398. } FFTContext;
  399. int ff_fft_init(FFTContext *s, int nbits, int inverse);
  400. void ff_fft_permute(FFTContext *s, FFTComplex *z);
  401. void ff_fft_calc_c(FFTContext *s, FFTComplex *z);
  402. void ff_fft_calc_sse(FFTContext *s, FFTComplex *z);
  403. void ff_fft_calc_altivec(FFTContext *s, FFTComplex *z);
  404. static inline void ff_fft_calc(FFTContext *s, FFTComplex *z)
  405. {
  406. s->fft_calc(s, z);
  407. }
  408. void ff_fft_end(FFTContext *s);
  409. /* MDCT computation */
  410. typedef struct MDCTContext {
  411. int n; /* size of MDCT (i.e. number of input data * 2) */
  412. int nbits; /* n = 2^nbits */
  413. /* pre/post rotation tables */
  414. FFTSample *tcos;
  415. FFTSample *tsin;
  416. FFTContext fft;
  417. } MDCTContext;
  418. int ff_mdct_init(MDCTContext *s, int nbits, int inverse);
  419. void ff_imdct_calc(MDCTContext *s, FFTSample *output,
  420. const FFTSample *input, FFTSample *tmp);
  421. void ff_mdct_calc(MDCTContext *s, FFTSample *out,
  422. const FFTSample *input, FFTSample *tmp);
  423. void ff_mdct_end(MDCTContext *s);
  424. #define WARPER8_16(name8, name16)\
  425. static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
  426. return name8(s, dst , src , stride, h)\
  427. +name8(s, dst+8 , src+8 , stride, h);\
  428. }
  429. #define WARPER8_16_SQ(name8, name16)\
  430. static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
  431. int score=0;\
  432. score +=name8(s, dst , src , stride, 8);\
  433. score +=name8(s, dst+8 , src+8 , stride, 8);\
  434. if(h==16){\
  435. dst += 8*stride;\
  436. src += 8*stride;\
  437. score +=name8(s, dst , src , stride, 8);\
  438. score +=name8(s, dst+8 , src+8 , stride, 8);\
  439. }\
  440. return score;\
  441. }
  442. #ifndef HAVE_LRINTF
  443. /* XXX: add ISOC specific test to avoid specific BSD testing. */
  444. /* better than nothing implementation. */
  445. /* btw, rintf() is existing on fbsd too -- alex */
  446. static inline long int lrintf(float x)
  447. {
  448. #ifdef CONFIG_WIN32
  449. /* XXX: incorrect, but make it compile */
  450. return (int)(x);
  451. #else
  452. return (int)(rint(x));
  453. #endif
  454. }
  455. #else
  456. #ifndef _ISOC9X_SOURCE
  457. #define _ISOC9X_SOURCE
  458. #endif
  459. #include <math.h>
  460. #endif
  461. #endif