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.

649 lines
24KB

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