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.

627 lines
22KB

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