dsputil.h 28 KB

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