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.

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