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.

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