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.

629 lines
21KB

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