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.

751 lines
28KB

  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 file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file dsputil.h
  24. * DSP utils.
  25. * note, many functions in here may use MMX which trashes the FPU state, it is
  26. * absolutely necessary to call emms_c() between dsp & float/double code
  27. */
  28. #ifndef DSPUTIL_H
  29. #define DSPUTIL_H
  30. #include "avcodec.h"
  31. //#define DEBUG
  32. /* dct code */
  33. typedef short DCTELEM;
  34. typedef int DWTELEM;
  35. typedef short IDWTELEM;
  36. void fdct_ifast (DCTELEM *data);
  37. void fdct_ifast248 (DCTELEM *data);
  38. void ff_jpeg_fdct_islow (DCTELEM *data);
  39. void ff_fdct248_islow (DCTELEM *data);
  40. void j_rev_dct (DCTELEM *data);
  41. void j_rev_dct4 (DCTELEM *data);
  42. void j_rev_dct2 (DCTELEM *data);
  43. void j_rev_dct1 (DCTELEM *data);
  44. void ff_fdct_mmx(DCTELEM *block);
  45. void ff_fdct_mmx2(DCTELEM *block);
  46. void ff_fdct_sse2(DCTELEM *block);
  47. void ff_h264_idct8_add_c(uint8_t *dst, DCTELEM *block, int stride);
  48. void ff_h264_idct_add_c(uint8_t *dst, DCTELEM *block, int stride);
  49. void ff_h264_idct8_dc_add_c(uint8_t *dst, DCTELEM *block, int stride);
  50. void ff_h264_idct_dc_add_c(uint8_t *dst, DCTELEM *block, int stride);
  51. void ff_h264_lowres_idct_add_c(uint8_t *dst, int stride, DCTELEM *block);
  52. void ff_h264_lowres_idct_put_c(uint8_t *dst, int stride, DCTELEM *block);
  53. void ff_vector_fmul_add_add_c(float *dst, const float *src0, const float *src1,
  54. const float *src2, int src3, int blocksize, int step);
  55. void ff_float_to_int16_c(int16_t *dst, const float *src, int len);
  56. /* encoding scans */
  57. extern const uint8_t ff_alternate_horizontal_scan[64];
  58. extern const uint8_t ff_alternate_vertical_scan[64];
  59. extern const uint8_t ff_zigzag_direct[64];
  60. extern const uint8_t ff_zigzag248_direct[64];
  61. /* pixel operations */
  62. #define MAX_NEG_CROP 1024
  63. /* temporary */
  64. extern uint32_t ff_squareTbl[512];
  65. extern uint8_t ff_cropTbl[256 + 2 * MAX_NEG_CROP];
  66. /* VP3 DSP functions */
  67. void ff_vp3_idct_c(DCTELEM *block/* align 16*/);
  68. void ff_vp3_idct_put_c(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  69. void ff_vp3_idct_add_c(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  70. /* 1/2^n downscaling functions from imgconvert.c */
  71. void ff_img_copy_plane(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  72. void ff_shrink22(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  73. void ff_shrink44(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  74. void ff_shrink88(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  75. void ff_gmc_c(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy,
  76. int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height);
  77. /* minimum alignment rules ;)
  78. if u notice errors in the align stuff, need more alignment for some asm code for some cpu
  79. or need to use a function with less aligned data then send a mail to the ffmpeg-dev list, ...
  80. !warning these alignments might not match reallity, (missing attribute((align)) stuff somewhere possible)
  81. i (michael) didnt check them, these are just the alignents which i think could be reached easily ...
  82. !future video codecs might need functions with less strict alignment
  83. */
  84. /*
  85. void get_pixels_c(DCTELEM *block, const uint8_t *pixels, int line_size);
  86. void diff_pixels_c(DCTELEM *block, const uint8_t *s1, const uint8_t *s2, int stride);
  87. void put_pixels_clamped_c(const DCTELEM *block, uint8_t *pixels, int line_size);
  88. void add_pixels_clamped_c(const DCTELEM *block, uint8_t *pixels, int line_size);
  89. void clear_blocks_c(DCTELEM *blocks);
  90. */
  91. /* add and put pixel (decoding) */
  92. // blocksizes for op_pixels_func are 8x4,8x8 16x8 16x16
  93. //h for op_pixels_func is limited to {width/2, width} but never larger than 16 and never smaller then 4
  94. typedef void (*op_pixels_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, int line_size, int h);
  95. 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);
  96. typedef void (*qpel_mc_func)(uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);
  97. typedef void (*h264_chroma_mc_func)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x, int y);
  98. typedef void (*h264_weight_func)(uint8_t *block, int stride, int log2_denom, int weight, int offset);
  99. typedef void (*h264_biweight_func)(uint8_t *dst, uint8_t *src, int stride, int log2_denom, int weightd, int weights, int offset);
  100. #define DEF_OLD_QPEL(name)\
  101. void ff_put_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\
  102. void ff_put_no_rnd_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\
  103. void ff_avg_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);
  104. DEF_OLD_QPEL(qpel16_mc11_old_c)
  105. DEF_OLD_QPEL(qpel16_mc31_old_c)
  106. DEF_OLD_QPEL(qpel16_mc12_old_c)
  107. DEF_OLD_QPEL(qpel16_mc32_old_c)
  108. DEF_OLD_QPEL(qpel16_mc13_old_c)
  109. DEF_OLD_QPEL(qpel16_mc33_old_c)
  110. DEF_OLD_QPEL(qpel8_mc11_old_c)
  111. DEF_OLD_QPEL(qpel8_mc31_old_c)
  112. DEF_OLD_QPEL(qpel8_mc12_old_c)
  113. DEF_OLD_QPEL(qpel8_mc32_old_c)
  114. DEF_OLD_QPEL(qpel8_mc13_old_c)
  115. DEF_OLD_QPEL(qpel8_mc33_old_c)
  116. #define CALL_2X_PIXELS(a, b, n)\
  117. static void a(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
  118. b(block , pixels , line_size, h);\
  119. b(block+n, pixels+n, line_size, h);\
  120. }
  121. /* motion estimation */
  122. // h is limited to {width/2, width, 2*width} but never larger than 16 and never smaller then 2
  123. // although currently h<4 is not used as functions with width <8 are neither used nor implemented
  124. 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))*/;
  125. // for snow slices
  126. typedef struct slice_buffer_s slice_buffer;
  127. /**
  128. * DSPContext.
  129. */
  130. typedef struct DSPContext {
  131. /* pixel ops : interface with DCT */
  132. void (*get_pixels)(DCTELEM *block/*align 16*/, const uint8_t *pixels/*align 8*/, int line_size);
  133. void (*diff_pixels)(DCTELEM *block/*align 16*/, const uint8_t *s1/*align 8*/, const uint8_t *s2/*align 8*/, int stride);
  134. void (*put_pixels_clamped)(const DCTELEM *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  135. void (*put_signed_pixels_clamped)(const DCTELEM *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  136. void (*add_pixels_clamped)(const DCTELEM *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  137. void (*add_pixels8)(uint8_t *pixels, DCTELEM *block, int line_size);
  138. void (*add_pixels4)(uint8_t *pixels, DCTELEM *block, int line_size);
  139. int (*sum_abs_dctelem)(DCTELEM *block/*align 16*/);
  140. /**
  141. * translational global motion compensation.
  142. */
  143. void (*gmc1)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x16, int y16, int rounder);
  144. /**
  145. * global motion compensation.
  146. */
  147. void (*gmc )(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int ox, int oy,
  148. int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height);
  149. void (*clear_blocks)(DCTELEM *blocks/*align 16*/);
  150. int (*pix_sum)(uint8_t * pix, int line_size);
  151. int (*pix_norm1)(uint8_t * pix, int line_size);
  152. // 16x16 8x8 4x4 2x2 16x8 8x4 4x2 8x16 4x8 2x4
  153. me_cmp_func sad[5]; /* identical to pix_absAxA except additional void * */
  154. me_cmp_func sse[5];
  155. me_cmp_func hadamard8_diff[5];
  156. me_cmp_func dct_sad[5];
  157. me_cmp_func quant_psnr[5];
  158. me_cmp_func bit[5];
  159. me_cmp_func rd[5];
  160. me_cmp_func vsad[5];
  161. me_cmp_func vsse[5];
  162. me_cmp_func nsse[5];
  163. me_cmp_func w53[5];
  164. me_cmp_func w97[5];
  165. me_cmp_func dct_max[5];
  166. me_cmp_func dct264_sad[5];
  167. me_cmp_func me_pre_cmp[5];
  168. me_cmp_func me_cmp[5];
  169. me_cmp_func me_sub_cmp[5];
  170. me_cmp_func mb_cmp[5];
  171. me_cmp_func ildct_cmp[5]; //only width 16 used
  172. me_cmp_func frame_skip_cmp[5]; //only width 8 used
  173. int (*ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2,
  174. int size);
  175. /**
  176. * Halfpel motion compensation with rounding (a+b+1)>>1.
  177. * this is an array[4][4] of motion compensation functions for 4
  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_pixels_tab[4][4];
  186. /**
  187. * Halfpel motion compensation with rounding (a+b+1)>>1.
  188. * This is an array[4][4] of motion compensation functions for 4
  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)>>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_pixels_tab[4][4];
  197. /**
  198. * Halfpel motion compensation with no rounding (a+b)>>1.
  199. * this is an array[2][4] of motion compensation functions for 2
  200. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  201. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  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. op_pixels_func put_no_rnd_pixels_tab[4][4];
  208. /**
  209. * Halfpel motion compensation with no rounding (a+b)>>1.
  210. * this is an array[2][4] of motion compensation functions for 2
  211. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  212. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  213. * @param block destination into which the result is averaged (a+b)>>1
  214. * @param pixels source
  215. * @param line_size number of bytes in a horizontal line of block
  216. * @param h height
  217. */
  218. op_pixels_func avg_no_rnd_pixels_tab[4][4];
  219. 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);
  220. /**
  221. * Thirdpel motion compensation with rounding (a+b+1)>>1.
  222. * this is an array[12] of motion compensation functions for the 9 thirdpe
  223. * positions<br>
  224. * *pixels_tab[ xthirdpel + 4*ythirdpel ]
  225. * @param block destination where the result is stored
  226. * @param pixels source
  227. * @param line_size number of bytes in a horizontal line of block
  228. * @param h height
  229. */
  230. tpel_mc_func put_tpel_pixels_tab[11]; //FIXME individual func ptr per width?
  231. tpel_mc_func avg_tpel_pixels_tab[11]; //FIXME individual func ptr per width?
  232. qpel_mc_func put_qpel_pixels_tab[2][16];
  233. qpel_mc_func avg_qpel_pixels_tab[2][16];
  234. qpel_mc_func put_no_rnd_qpel_pixels_tab[2][16];
  235. qpel_mc_func avg_no_rnd_qpel_pixels_tab[2][16];
  236. qpel_mc_func put_mspel_pixels_tab[8];
  237. /**
  238. * h264 Chroma MC
  239. */
  240. h264_chroma_mc_func put_h264_chroma_pixels_tab[3];
  241. /* This is really one func used in VC-1 decoding */
  242. h264_chroma_mc_func put_no_rnd_h264_chroma_pixels_tab[3];
  243. h264_chroma_mc_func avg_h264_chroma_pixels_tab[3];
  244. qpel_mc_func put_h264_qpel_pixels_tab[4][16];
  245. qpel_mc_func avg_h264_qpel_pixels_tab[4][16];
  246. qpel_mc_func put_2tap_qpel_pixels_tab[4][16];
  247. qpel_mc_func avg_2tap_qpel_pixels_tab[4][16];
  248. h264_weight_func weight_h264_pixels_tab[10];
  249. h264_biweight_func biweight_h264_pixels_tab[10];
  250. /* AVS specific */
  251. qpel_mc_func put_cavs_qpel_pixels_tab[2][16];
  252. qpel_mc_func avg_cavs_qpel_pixels_tab[2][16];
  253. void (*cavs_filter_lv)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2);
  254. void (*cavs_filter_lh)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2);
  255. void (*cavs_filter_cv)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2);
  256. void (*cavs_filter_ch)(uint8_t *pix, int stride, int alpha, int beta, int tc, int bs1, int bs2);
  257. void (*cavs_idct8_add)(uint8_t *dst, DCTELEM *block, int stride);
  258. me_cmp_func pix_abs[2][4];
  259. /* huffyuv specific */
  260. void (*add_bytes)(uint8_t *dst/*align 16*/, uint8_t *src/*align 16*/, int w);
  261. void (*diff_bytes)(uint8_t *dst/*align 16*/, uint8_t *src1/*align 16*/, uint8_t *src2/*align 1*/,int w);
  262. /**
  263. * subtract huffyuv's variant of median prediction
  264. * note, this might read from src1[-1], src2[-1]
  265. */
  266. void (*sub_hfyu_median_prediction)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int w, int *left, int *left_top);
  267. void (*bswap_buf)(uint32_t *dst, uint32_t *src, int w);
  268. void (*h264_v_loop_filter_luma)(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0);
  269. void (*h264_h_loop_filter_luma)(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0);
  270. void (*h264_v_loop_filter_chroma)(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0);
  271. void (*h264_h_loop_filter_chroma)(uint8_t *pix, int stride, int alpha, int beta, int8_t *tc0);
  272. void (*h264_v_loop_filter_chroma_intra)(uint8_t *pix, int stride, int alpha, int beta);
  273. void (*h264_h_loop_filter_chroma_intra)(uint8_t *pix, int stride, int alpha, int beta);
  274. // h264_loop_filter_strength: simd only. the C version is inlined in h264.c
  275. void (*h264_loop_filter_strength)(int16_t bS[2][4][4], uint8_t nnz[40], int8_t ref[2][40], int16_t mv[2][40][2],
  276. int bidir, int edges, int step, int mask_mv0, int mask_mv1);
  277. void (*h263_v_loop_filter)(uint8_t *src, int stride, int qscale);
  278. void (*h263_h_loop_filter)(uint8_t *src, int stride, int qscale);
  279. void (*h261_loop_filter)(uint8_t *src, int stride);
  280. /* assume len is a multiple of 4, and arrays are 16-byte aligned */
  281. void (*vorbis_inverse_coupling)(float *mag, float *ang, int blocksize);
  282. /* assume len is a multiple of 8, and arrays are 16-byte aligned */
  283. void (*vector_fmul)(float *dst, const float *src, int len);
  284. void (*vector_fmul_reverse)(float *dst, const float *src0, const float *src1, int len);
  285. /* assume len is a multiple of 8, and src arrays are 16-byte aligned */
  286. void (*vector_fmul_add_add)(float *dst, const float *src0, const float *src1, const float *src2, int src3, int len, int step);
  287. /* C version: convert floats from the range [384.0,386.0] to ints in [-32768,32767]
  288. * simd versions: convert floats from [-32768.0,32767.0] without rescaling and arrays are 16byte aligned */
  289. void (*float_to_int16)(int16_t *dst, const float *src, int len);
  290. /* (I)DCT */
  291. void (*fdct)(DCTELEM *block/* align 16*/);
  292. void (*fdct248)(DCTELEM *block/* align 16*/);
  293. /* IDCT really*/
  294. void (*idct)(DCTELEM *block/* align 16*/);
  295. /**
  296. * block -> idct -> clip to unsigned 8 bit -> dest.
  297. * (-1392, 0, 0, ...) -> idct -> (-174, -174, ...) -> put -> (0, 0, ...)
  298. * @param line_size size in bytes of a horizotal line of dest
  299. */
  300. void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  301. /**
  302. * block -> idct -> add dest -> clip to unsigned 8 bit -> dest.
  303. * @param line_size size in bytes of a horizotal line of dest
  304. */
  305. void (*idct_add)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
  306. /**
  307. * idct input permutation.
  308. * several optimized IDCTs need a permutated input (relative to the normal order of the reference
  309. * IDCT)
  310. * this permutation must be performed before the idct_put/add, note, normally this can be merged
  311. * with the zigzag/alternate scan<br>
  312. * an example to avoid confusion:
  313. * - (->decode coeffs -> zigzag reorder -> dequant -> reference idct ->...)
  314. * - (x -> referece dct -> reference idct -> x)
  315. * - (x -> referece dct -> simple_mmx_perm = idct_permutation -> simple_idct_mmx -> x)
  316. * - (->decode coeffs -> zigzag reorder -> simple_mmx_perm -> dequant -> simple_idct_mmx ->...)
  317. */
  318. uint8_t idct_permutation[64];
  319. int idct_permutation_type;
  320. #define FF_NO_IDCT_PERM 1
  321. #define FF_LIBMPEG2_IDCT_PERM 2
  322. #define FF_SIMPLE_IDCT_PERM 3
  323. #define FF_TRANSPOSE_IDCT_PERM 4
  324. #define FF_PARTTRANS_IDCT_PERM 5
  325. int (*try_8x8basis)(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale);
  326. void (*add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale);
  327. #define BASIS_SHIFT 16
  328. #define RECON_SHIFT 6
  329. /* h264 functions */
  330. void (*h264_idct_add)(uint8_t *dst, DCTELEM *block, int stride);
  331. void (*h264_idct8_add)(uint8_t *dst, DCTELEM *block, int stride);
  332. void (*h264_idct_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
  333. void (*h264_idct8_dc_add)(uint8_t *dst, DCTELEM *block, int stride);
  334. void (*h264_dct)(DCTELEM block[4][4]);
  335. /* snow wavelet */
  336. void (*vertical_compose97i)(IDWTELEM *b0, IDWTELEM *b1, IDWTELEM *b2, IDWTELEM *b3, IDWTELEM *b4, IDWTELEM *b5, int width);
  337. void (*horizontal_compose97i)(IDWTELEM *b, int width);
  338. void (*inner_add_yblock)(const 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);
  339. void (*prefetch)(void *mem, int stride, int h);
  340. void (*shrink[4])(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  341. /* vc1 functions */
  342. void (*vc1_inv_trans_8x8)(DCTELEM *b);
  343. void (*vc1_inv_trans_8x4)(DCTELEM *b, int n);
  344. void (*vc1_inv_trans_4x8)(DCTELEM *b, int n);
  345. void (*vc1_inv_trans_4x4)(DCTELEM *b, int n);
  346. void (*vc1_v_overlap)(uint8_t* src, int stride);
  347. void (*vc1_h_overlap)(uint8_t* src, int stride);
  348. /* put 8x8 block with bicubic interpolation and quarterpel precision
  349. * last argument is actually round value instead of height
  350. */
  351. op_pixels_func put_vc1_mspel_pixels_tab[16];
  352. } DSPContext;
  353. void dsputil_static_init(void);
  354. void dsputil_init(DSPContext* p, AVCodecContext *avctx);
  355. int ff_check_alignment(void);
  356. /**
  357. * permute block according to permuatation.
  358. * @param last last non zero element in scantable order
  359. */
  360. void ff_block_permute(DCTELEM *block, uint8_t *permutation, const uint8_t *scantable, int last);
  361. void ff_set_cmp(DSPContext* c, me_cmp_func *cmp, int type);
  362. #define BYTE_VEC32(c) ((c)*0x01010101UL)
  363. static inline uint32_t rnd_avg32(uint32_t a, uint32_t b)
  364. {
  365. return (a | b) - (((a ^ b) & ~BYTE_VEC32(0x01)) >> 1);
  366. }
  367. static inline uint32_t no_rnd_avg32(uint32_t a, uint32_t b)
  368. {
  369. return (a & b) + (((a ^ b) & ~BYTE_VEC32(0x01)) >> 1);
  370. }
  371. static inline int get_penalty_factor(int lambda, int lambda2, int type){
  372. switch(type&0xFF){
  373. default:
  374. case FF_CMP_SAD:
  375. return lambda>>FF_LAMBDA_SHIFT;
  376. case FF_CMP_DCT:
  377. return (3*lambda)>>(FF_LAMBDA_SHIFT+1);
  378. case FF_CMP_W53:
  379. return (4*lambda)>>(FF_LAMBDA_SHIFT);
  380. case FF_CMP_W97:
  381. return (2*lambda)>>(FF_LAMBDA_SHIFT);
  382. case FF_CMP_SATD:
  383. case FF_CMP_DCT264:
  384. return (2*lambda)>>FF_LAMBDA_SHIFT;
  385. case FF_CMP_RD:
  386. case FF_CMP_PSNR:
  387. case FF_CMP_SSE:
  388. case FF_CMP_NSSE:
  389. return lambda2>>FF_LAMBDA_SHIFT;
  390. case FF_CMP_BIT:
  391. return 1;
  392. }
  393. }
  394. /**
  395. * Empty mmx state.
  396. * this must be called between any dsp function and float/double code.
  397. * for example sin(); dsp->idct_put(); emms_c(); cos()
  398. */
  399. #define emms_c()
  400. /* should be defined by architectures supporting
  401. one or more MultiMedia extension */
  402. int mm_support(void);
  403. void dsputil_init_alpha(DSPContext* c, AVCodecContext *avctx);
  404. void dsputil_init_armv4l(DSPContext* c, AVCodecContext *avctx);
  405. void dsputil_init_bfin(DSPContext* c, AVCodecContext *avctx);
  406. void dsputil_init_mlib(DSPContext* c, AVCodecContext *avctx);
  407. void dsputil_init_mmi(DSPContext* c, AVCodecContext *avctx);
  408. void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx);
  409. void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx);
  410. void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx);
  411. void dsputil_init_vis(DSPContext* c, AVCodecContext *avctx);
  412. #define DECLARE_ALIGNED_16(t, v) DECLARE_ALIGNED(16, t, v)
  413. #if defined(HAVE_MMX)
  414. #undef emms_c
  415. #define MM_MMX 0x0001 /* standard MMX */
  416. #define MM_3DNOW 0x0004 /* AMD 3DNOW */
  417. #define MM_MMXEXT 0x0002 /* SSE integer functions or AMD MMX ext */
  418. #define MM_SSE 0x0008 /* SSE functions */
  419. #define MM_SSE2 0x0010 /* PIV SSE2 functions */
  420. #define MM_3DNOWEXT 0x0020 /* AMD 3DNowExt */
  421. #define MM_SSE3 0x0040 /* Prescott SSE3 functions */
  422. #define MM_SSSE3 0x0080 /* Conroe SSSE3 functions */
  423. extern int mm_flags;
  424. void add_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size);
  425. void put_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size);
  426. void put_signed_pixels_clamped_mmx(const DCTELEM *block, uint8_t *pixels, int line_size);
  427. static inline void emms(void)
  428. {
  429. __asm __volatile ("emms;":::"memory");
  430. }
  431. #define emms_c() \
  432. {\
  433. if (mm_flags & MM_MMX)\
  434. emms();\
  435. }
  436. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
  437. #define STRIDE_ALIGN 8
  438. void dsputil_init_pix_mmx(DSPContext* c, AVCodecContext *avctx);
  439. #elif defined(ARCH_ARMV4L)
  440. /* This is to use 4 bytes read to the IDCT pointers for some 'zero'
  441. line optimizations */
  442. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(4, t, v)
  443. #define STRIDE_ALIGN 4
  444. #define MM_IWMMXT 0x0100 /* XScale IWMMXT */
  445. extern int mm_flags;
  446. #elif defined(HAVE_MLIB)
  447. /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
  448. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
  449. #define STRIDE_ALIGN 8
  450. #elif defined(ARCH_SPARC)
  451. /* SPARC/VIS IDCT needs 8-byte aligned DCT blocks */
  452. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
  453. #define STRIDE_ALIGN 8
  454. #elif defined(ARCH_ALPHA)
  455. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
  456. #define STRIDE_ALIGN 8
  457. #elif defined(ARCH_POWERPC)
  458. #define MM_ALTIVEC 0x0001 /* standard AltiVec */
  459. extern int mm_flags;
  460. #if defined(HAVE_ALTIVEC) && !defined(__APPLE_CC__)
  461. #define pixel altivec_pixel
  462. #include <altivec.h>
  463. #undef pixel
  464. #endif
  465. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(16, t, v)
  466. #define STRIDE_ALIGN 16
  467. #elif defined(HAVE_MMI)
  468. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(16, t, v)
  469. #define STRIDE_ALIGN 16
  470. #elif defined(ARCH_SH4)
  471. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
  472. #define STRIDE_ALIGN 8
  473. #elif defined(ARCH_BFIN)
  474. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
  475. #define STRIDE_ALIGN 8
  476. #else
  477. #define DECLARE_ALIGNED_8(t, v) DECLARE_ALIGNED(8, t, v)
  478. #define STRIDE_ALIGN 8
  479. #endif
  480. /* PSNR */
  481. void get_psnr(uint8_t *orig_image[3], uint8_t *coded_image[3],
  482. int orig_linesize[3], int coded_linesize,
  483. AVCodecContext *avctx);
  484. /* FFT computation */
  485. /* NOTE: soon integer code will be added, so you must use the
  486. FFTSample type */
  487. typedef float FFTSample;
  488. struct MDCTContext;
  489. typedef struct FFTComplex {
  490. FFTSample re, im;
  491. } FFTComplex;
  492. typedef struct FFTContext {
  493. int nbits;
  494. int inverse;
  495. uint16_t *revtab;
  496. FFTComplex *exptab;
  497. FFTComplex *exptab1; /* only used by SSE code */
  498. void (*fft_calc)(struct FFTContext *s, FFTComplex *z);
  499. void (*imdct_calc)(struct MDCTContext *s, FFTSample *output,
  500. const FFTSample *input, FFTSample *tmp);
  501. } FFTContext;
  502. int ff_fft_init(FFTContext *s, int nbits, int inverse);
  503. void ff_fft_permute(FFTContext *s, FFTComplex *z);
  504. void ff_fft_calc_c(FFTContext *s, FFTComplex *z);
  505. void ff_fft_calc_sse(FFTContext *s, FFTComplex *z);
  506. void ff_fft_calc_3dn(FFTContext *s, FFTComplex *z);
  507. void ff_fft_calc_3dn2(FFTContext *s, FFTComplex *z);
  508. void ff_fft_calc_altivec(FFTContext *s, FFTComplex *z);
  509. static inline void ff_fft_calc(FFTContext *s, FFTComplex *z)
  510. {
  511. s->fft_calc(s, z);
  512. }
  513. void ff_fft_end(FFTContext *s);
  514. /* MDCT computation */
  515. typedef struct MDCTContext {
  516. int n; /* size of MDCT (i.e. number of input data * 2) */
  517. int nbits; /* n = 2^nbits */
  518. /* pre/post rotation tables */
  519. FFTSample *tcos;
  520. FFTSample *tsin;
  521. FFTContext fft;
  522. } MDCTContext;
  523. int ff_mdct_init(MDCTContext *s, int nbits, int inverse);
  524. void ff_imdct_calc(MDCTContext *s, FFTSample *output,
  525. const FFTSample *input, FFTSample *tmp);
  526. void ff_imdct_calc_3dn2(MDCTContext *s, FFTSample *output,
  527. const FFTSample *input, FFTSample *tmp);
  528. void ff_imdct_calc_sse(MDCTContext *s, FFTSample *output,
  529. const FFTSample *input, FFTSample *tmp);
  530. void ff_mdct_calc(MDCTContext *s, FFTSample *out,
  531. const FFTSample *input, FFTSample *tmp);
  532. void ff_mdct_end(MDCTContext *s);
  533. #define WARPER8_16(name8, name16)\
  534. static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
  535. return name8(s, dst , src , stride, h)\
  536. +name8(s, dst+8 , src+8 , stride, h);\
  537. }
  538. #define WARPER8_16_SQ(name8, name16)\
  539. static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
  540. int score=0;\
  541. score +=name8(s, dst , src , stride, 8);\
  542. score +=name8(s, dst+8 , src+8 , stride, 8);\
  543. if(h==16){\
  544. dst += 8*stride;\
  545. src += 8*stride;\
  546. score +=name8(s, dst , src , stride, 8);\
  547. score +=name8(s, dst+8 , src+8 , stride, 8);\
  548. }\
  549. return score;\
  550. }
  551. static inline void copy_block2(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h)
  552. {
  553. int i;
  554. for(i=0; i<h; i++)
  555. {
  556. AV_WN16(dst , AV_RN16(src ));
  557. dst+=dstStride;
  558. src+=srcStride;
  559. }
  560. }
  561. static inline void copy_block4(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h)
  562. {
  563. int i;
  564. for(i=0; i<h; i++)
  565. {
  566. AV_WN32(dst , AV_RN32(src ));
  567. dst+=dstStride;
  568. src+=srcStride;
  569. }
  570. }
  571. static inline void copy_block8(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h)
  572. {
  573. int i;
  574. for(i=0; i<h; i++)
  575. {
  576. AV_WN32(dst , AV_RN32(src ));
  577. AV_WN32(dst+4 , AV_RN32(src+4 ));
  578. dst+=dstStride;
  579. src+=srcStride;
  580. }
  581. }
  582. static inline void copy_block9(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h)
  583. {
  584. int i;
  585. for(i=0; i<h; i++)
  586. {
  587. AV_WN32(dst , AV_RN32(src ));
  588. AV_WN32(dst+4 , AV_RN32(src+4 ));
  589. dst[8]= src[8];
  590. dst+=dstStride;
  591. src+=srcStride;
  592. }
  593. }
  594. static inline void copy_block16(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h)
  595. {
  596. int i;
  597. for(i=0; i<h; i++)
  598. {
  599. AV_WN32(dst , AV_RN32(src ));
  600. AV_WN32(dst+4 , AV_RN32(src+4 ));
  601. AV_WN32(dst+8 , AV_RN32(src+8 ));
  602. AV_WN32(dst+12, AV_RN32(src+12));
  603. dst+=dstStride;
  604. src+=srcStride;
  605. }
  606. }
  607. static inline void copy_block17(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int h)
  608. {
  609. int i;
  610. for(i=0; i<h; i++)
  611. {
  612. AV_WN32(dst , AV_RN32(src ));
  613. AV_WN32(dst+4 , AV_RN32(src+4 ));
  614. AV_WN32(dst+8 , AV_RN32(src+8 ));
  615. AV_WN32(dst+12, AV_RN32(src+12));
  616. dst[16]= src[16];
  617. dst+=dstStride;
  618. src+=srcStride;
  619. }
  620. }
  621. #endif