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.

500 lines
20KB

  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 Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  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 AVCODEC_DSPUTIL_H
  29. #define AVCODEC_DSPUTIL_H
  30. #include "libavutil/intreadwrite.h"
  31. #include "avcodec.h"
  32. //#define DEBUG
  33. /* dct code */
  34. void ff_fdct_ifast(int16_t *data);
  35. void ff_fdct_ifast248(int16_t *data);
  36. void ff_jpeg_fdct_islow_8(int16_t *data);
  37. void ff_jpeg_fdct_islow_10(int16_t *data);
  38. void ff_fdct248_islow_8(int16_t *data);
  39. void ff_fdct248_islow_10(int16_t *data);
  40. void ff_j_rev_dct(int16_t *data);
  41. void ff_fdct_mmx(int16_t *block);
  42. void ff_fdct_mmxext(int16_t *block);
  43. void ff_fdct_sse2(int16_t *block);
  44. void ff_svq3_luma_dc_dequant_idct_c(int16_t *output, int16_t *input, int qp);
  45. void ff_svq3_add_idct_c(uint8_t *dst, int16_t *block, int stride, int qp, int dc);
  46. /* encoding scans */
  47. extern const uint8_t ff_alternate_horizontal_scan[64];
  48. extern const uint8_t ff_alternate_vertical_scan[64];
  49. extern const uint8_t ff_zigzag_direct[64];
  50. extern const uint8_t ff_zigzag248_direct[64];
  51. /* pixel operations */
  52. #define MAX_NEG_CROP 1024
  53. /* temporary */
  54. extern uint32_t ff_squareTbl[512];
  55. extern uint8_t ff_cropTbl[256 + 2 * MAX_NEG_CROP];
  56. #define PUTAVG_PIXELS(depth)\
  57. void ff_put_pixels8x8_ ## depth ## _c(uint8_t *dst, uint8_t *src, int stride);\
  58. void ff_avg_pixels8x8_ ## depth ## _c(uint8_t *dst, uint8_t *src, int stride);\
  59. void ff_put_pixels16x16_ ## depth ## _c(uint8_t *dst, uint8_t *src, int stride);\
  60. void ff_avg_pixels16x16_ ## depth ## _c(uint8_t *dst, uint8_t *src, int stride);
  61. PUTAVG_PIXELS( 8)
  62. PUTAVG_PIXELS( 9)
  63. PUTAVG_PIXELS(10)
  64. #define ff_put_pixels8x8_c ff_put_pixels8x8_8_c
  65. #define ff_avg_pixels8x8_c ff_avg_pixels8x8_8_c
  66. #define ff_put_pixels16x16_c ff_put_pixels16x16_8_c
  67. #define ff_avg_pixels16x16_c ff_avg_pixels16x16_8_c
  68. /* RV40 functions */
  69. void ff_put_rv40_qpel16_mc33_c(uint8_t *dst, uint8_t *src, int stride);
  70. void ff_avg_rv40_qpel16_mc33_c(uint8_t *dst, uint8_t *src, int stride);
  71. void ff_put_rv40_qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride);
  72. void ff_avg_rv40_qpel8_mc33_c(uint8_t *dst, uint8_t *src, int stride);
  73. /* 1/2^n downscaling functions from imgconvert.c */
  74. void ff_shrink22(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  75. void ff_shrink44(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  76. void ff_shrink88(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  77. void ff_gmc_c(uint8_t *dst, uint8_t *src, int stride, int h, int ox, int oy,
  78. int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height);
  79. /* minimum alignment rules ;)
  80. If you notice errors in the align stuff, need more alignment for some ASM code
  81. for some CPU or need to use a function with less aligned data then send a mail
  82. to the libav-devel mailing list, ...
  83. !warning These alignments might not match reality, (missing attribute((align))
  84. stuff somewhere possible).
  85. I (Michael) did not check them, these are just the alignments which I think
  86. could be reached easily ...
  87. !future video codecs might need functions with less strict alignment
  88. */
  89. /*
  90. void get_pixels_c(int16_t *block, const uint8_t *pixels, int line_size);
  91. void diff_pixels_c(int16_t *block, const uint8_t *s1, const uint8_t *s2, int stride);
  92. void put_pixels_clamped_c(const int16_t *block, uint8_t *pixels, int line_size);
  93. void add_pixels_clamped_c(const int16_t *block, uint8_t *pixels, int line_size);
  94. void clear_blocks_c(int16_t *blocks);
  95. */
  96. /* add and put pixel (decoding) */
  97. // blocksizes for op_pixels_func are 8x4,8x8 16x8 16x16
  98. //h for op_pixels_func is limited to {width/2, width} but never larger than 16 and never smaller than 4
  99. typedef void (*op_pixels_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, ptrdiff_t line_size, int h);
  100. 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);
  101. typedef void (*qpel_mc_func)(uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);
  102. typedef void (*op_fill_func)(uint8_t *block/*align width (8 or 16)*/, uint8_t value, int line_size, int h);
  103. #define DEF_OLD_QPEL(name)\
  104. void ff_put_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\
  105. void ff_put_no_rnd_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);\
  106. void ff_avg_ ## name (uint8_t *dst/*align width (8 or 16)*/, uint8_t *src/*align 1*/, int stride);
  107. DEF_OLD_QPEL(qpel16_mc11_old_c)
  108. DEF_OLD_QPEL(qpel16_mc31_old_c)
  109. DEF_OLD_QPEL(qpel16_mc12_old_c)
  110. DEF_OLD_QPEL(qpel16_mc32_old_c)
  111. DEF_OLD_QPEL(qpel16_mc13_old_c)
  112. DEF_OLD_QPEL(qpel16_mc33_old_c)
  113. DEF_OLD_QPEL(qpel8_mc11_old_c)
  114. DEF_OLD_QPEL(qpel8_mc31_old_c)
  115. DEF_OLD_QPEL(qpel8_mc12_old_c)
  116. DEF_OLD_QPEL(qpel8_mc32_old_c)
  117. DEF_OLD_QPEL(qpel8_mc13_old_c)
  118. DEF_OLD_QPEL(qpel8_mc33_old_c)
  119. #define CALL_2X_PIXELS(a, b, n)\
  120. static void a(uint8_t *block, const uint8_t *pixels, int line_size, int h){\
  121. b(block , pixels , line_size, h);\
  122. b(block+n, pixels+n, line_size, h);\
  123. }
  124. /* motion estimation */
  125. // h is limited to {width/2, width, 2*width} but never larger than 16 and never smaller than 2
  126. // although currently h<4 is not used as functions with width <8 are neither used nor implemented
  127. 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))*/;
  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. } ScanTable;
  136. void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable);
  137. void ff_init_scantable_permutation(uint8_t *idct_permutation,
  138. int idct_permutation_type);
  139. /**
  140. * DSPContext.
  141. */
  142. typedef struct DSPContext {
  143. /**
  144. * Size of DCT coefficients.
  145. */
  146. int dct_bits;
  147. /* pixel ops : interface with DCT */
  148. void (*get_pixels)(int16_t *block/*align 16*/, const uint8_t *pixels/*align 8*/, int line_size);
  149. void (*diff_pixels)(int16_t *block/*align 16*/, const uint8_t *s1/*align 8*/, const uint8_t *s2/*align 8*/, int stride);
  150. void (*put_pixels_clamped)(const int16_t *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  151. void (*put_signed_pixels_clamped)(const int16_t *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  152. void (*add_pixels_clamped)(const int16_t *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size);
  153. void (*add_pixels8)(uint8_t *pixels, int16_t *block, int line_size);
  154. void (*add_pixels4)(uint8_t *pixels, int16_t *block, int line_size);
  155. int (*sum_abs_dctelem)(int16_t *block/*align 16*/);
  156. /**
  157. * translational global motion compensation.
  158. */
  159. void (*gmc1)(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int srcStride, int h, int x16, int y16, int rounder);
  160. /**
  161. * global motion compensation.
  162. */
  163. void (*gmc )(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int ox, int oy,
  164. int dxx, int dxy, int dyx, int dyy, int shift, int r, int width, int height);
  165. void (*clear_block)(int16_t *block/*align 16*/);
  166. void (*clear_blocks)(int16_t *blocks/*align 16*/);
  167. int (*pix_sum)(uint8_t * pix, int line_size);
  168. int (*pix_norm1)(uint8_t * pix, int line_size);
  169. // 16x16 8x8 4x4 2x2 16x8 8x4 4x2 8x16 4x8 2x4
  170. me_cmp_func sad[6]; /* identical to pix_absAxA except additional void * */
  171. me_cmp_func sse[6];
  172. me_cmp_func hadamard8_diff[6];
  173. me_cmp_func dct_sad[6];
  174. me_cmp_func quant_psnr[6];
  175. me_cmp_func bit[6];
  176. me_cmp_func rd[6];
  177. me_cmp_func vsad[6];
  178. me_cmp_func vsse[6];
  179. me_cmp_func nsse[6];
  180. me_cmp_func dct_max[6];
  181. me_cmp_func dct264_sad[6];
  182. me_cmp_func me_pre_cmp[6];
  183. me_cmp_func me_cmp[6];
  184. me_cmp_func me_sub_cmp[6];
  185. me_cmp_func mb_cmp[6];
  186. me_cmp_func ildct_cmp[6]; //only width 16 used
  187. me_cmp_func frame_skip_cmp[6]; //only width 8 used
  188. int (*ssd_int8_vs_int16)(const int8_t *pix1, const int16_t *pix2,
  189. int size);
  190. /**
  191. * Halfpel motion compensation with rounding (a+b+1)>>1.
  192. * this is an array[4][4] of motion compensation functions for 4
  193. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  194. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  195. * @param block destination where the result is stored
  196. * @param pixels source
  197. * @param line_size number of bytes in a horizontal line of block
  198. * @param h height
  199. */
  200. op_pixels_func put_pixels_tab[4][4];
  201. /**
  202. * Halfpel motion compensation with rounding (a+b+1)>>1.
  203. * This is an array[4][4] of motion compensation functions for 4
  204. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  205. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  206. * @param block destination into which the result is averaged (a+b+1)>>1
  207. * @param pixels source
  208. * @param line_size number of bytes in a horizontal line of block
  209. * @param h height
  210. */
  211. op_pixels_func avg_pixels_tab[4][4];
  212. /**
  213. * Halfpel motion compensation with no rounding (a+b)>>1.
  214. * this is an array[2][4] of motion compensation functions for 2
  215. * horizontal blocksizes (8,16) and the 4 halfpel positions<br>
  216. * *pixels_tab[ 0->16xH 1->8xH ][ xhalfpel + 2*yhalfpel ]
  217. * @param block destination where the result is stored
  218. * @param pixels source
  219. * @param line_size number of bytes in a horizontal line of block
  220. * @param h height
  221. */
  222. op_pixels_func put_no_rnd_pixels_tab[2][4];
  223. /**
  224. * Halfpel motion compensation with no rounding (a+b)>>1.
  225. * this is an array[4] of motion compensation functions for 1
  226. * horizontal blocksize (16) and the 4 halfpel positions<br>
  227. * *pixels_tab[0][ xhalfpel + 2*yhalfpel ]
  228. * @param block destination into which the result is averaged (a+b)>>1
  229. * @param pixels source
  230. * @param line_size number of bytes in a horizontal line of block
  231. * @param h height
  232. */
  233. op_pixels_func avg_no_rnd_pixels_tab[4];
  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 put_mspel_pixels_tab[8];
  250. me_cmp_func pix_abs[2][4];
  251. /* huffyuv specific */
  252. void (*add_bytes)(uint8_t *dst/*align 16*/, uint8_t *src/*align 16*/, int w);
  253. void (*diff_bytes)(uint8_t *dst/*align 16*/, uint8_t *src1/*align 16*/, uint8_t *src2/*align 1*/,int w);
  254. /**
  255. * subtract huffyuv's variant of median prediction
  256. * note, this might read from src1[-1], src2[-1]
  257. */
  258. void (*sub_hfyu_median_prediction)(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, int w, int *left, int *left_top);
  259. void (*add_hfyu_median_prediction)(uint8_t *dst, const uint8_t *top, const uint8_t *diff, int w, int *left, int *left_top);
  260. int (*add_hfyu_left_prediction)(uint8_t *dst, const uint8_t *src, int w, int left);
  261. void (*add_hfyu_left_prediction_bgr32)(uint8_t *dst, const uint8_t *src, int w, int *red, int *green, int *blue, int *alpha);
  262. void (*bswap_buf)(uint32_t *dst, const uint32_t *src, int w);
  263. void (*bswap16_buf)(uint16_t *dst, const uint16_t *src, int len);
  264. void (*h263_v_loop_filter)(uint8_t *src, int stride, int qscale);
  265. void (*h263_h_loop_filter)(uint8_t *src, int stride, int qscale);
  266. void (*h261_loop_filter)(uint8_t *src, int stride);
  267. /* assume len is a multiple of 8, and arrays are 16-byte aligned */
  268. void (*vector_clipf)(float *dst /* align 16 */, const float *src /* align 16 */, float min, float max, int len /* align 16 */);
  269. /* (I)DCT */
  270. void (*fdct)(int16_t *block/* align 16*/);
  271. void (*fdct248)(int16_t *block/* align 16*/);
  272. /* IDCT really*/
  273. void (*idct)(int16_t *block/* align 16*/);
  274. /**
  275. * block -> idct -> clip to unsigned 8 bit -> dest.
  276. * (-1392, 0, 0, ...) -> idct -> (-174, -174, ...) -> put -> (0, 0, ...)
  277. * @param line_size size in bytes of a horizontal line of dest
  278. */
  279. void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, int16_t *block/*align 16*/);
  280. /**
  281. * block -> idct -> add dest -> clip to unsigned 8 bit -> dest.
  282. * @param line_size size in bytes of a horizontal line of dest
  283. */
  284. void (*idct_add)(uint8_t *dest/*align 8*/, int line_size, int16_t *block/*align 16*/);
  285. /**
  286. * idct input permutation.
  287. * several optimized IDCTs need a permutated input (relative to the normal order of the reference
  288. * IDCT)
  289. * this permutation must be performed before the idct_put/add, note, normally this can be merged
  290. * with the zigzag/alternate scan<br>
  291. * an example to avoid confusion:
  292. * - (->decode coeffs -> zigzag reorder -> dequant -> reference idct ->...)
  293. * - (x -> reference dct -> reference idct -> x)
  294. * - (x -> reference dct -> simple_mmx_perm = idct_permutation -> simple_idct_mmx -> x)
  295. * - (->decode coeffs -> zigzag reorder -> simple_mmx_perm -> dequant -> simple_idct_mmx ->...)
  296. */
  297. uint8_t idct_permutation[64];
  298. int idct_permutation_type;
  299. #define FF_NO_IDCT_PERM 1
  300. #define FF_LIBMPEG2_IDCT_PERM 2
  301. #define FF_SIMPLE_IDCT_PERM 3
  302. #define FF_TRANSPOSE_IDCT_PERM 4
  303. #define FF_PARTTRANS_IDCT_PERM 5
  304. #define FF_SSE2_IDCT_PERM 6
  305. int (*try_8x8basis)(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale);
  306. void (*add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale);
  307. #define BASIS_SHIFT 16
  308. #define RECON_SHIFT 6
  309. void (*draw_edges)(uint8_t *buf, int wrap, int width, int height, int w, int h, int sides);
  310. #define EDGE_WIDTH 16
  311. #define EDGE_TOP 1
  312. #define EDGE_BOTTOM 2
  313. void (*shrink[4])(uint8_t *dst, int dst_wrap, const uint8_t *src, int src_wrap, int width, int height);
  314. /**
  315. * Calculate scalar product of two vectors.
  316. * @param len length of vectors, should be multiple of 16
  317. */
  318. int32_t (*scalarproduct_int16)(const int16_t *v1, const int16_t *v2/*align 16*/, int len);
  319. /* ape functions */
  320. /**
  321. * Calculate scalar product of v1 and v2,
  322. * and v1[i] += v3[i] * mul
  323. * @param len length of vectors, should be multiple of 16
  324. */
  325. int32_t (*scalarproduct_and_madd_int16)(int16_t *v1/*align 16*/, const int16_t *v2, const int16_t *v3, int len, int mul);
  326. /**
  327. * Apply symmetric window in 16-bit fixed-point.
  328. * @param output destination array
  329. * constraints: 16-byte aligned
  330. * @param input source array
  331. * constraints: 16-byte aligned
  332. * @param window window array
  333. * constraints: 16-byte aligned, at least len/2 elements
  334. * @param len full window length
  335. * constraints: multiple of ? greater than zero
  336. */
  337. void (*apply_window_int16)(int16_t *output, const int16_t *input,
  338. const int16_t *window, unsigned int len);
  339. /**
  340. * Clip each element in an array of int32_t to a given minimum and maximum value.
  341. * @param dst destination array
  342. * constraints: 16-byte aligned
  343. * @param src source array
  344. * constraints: 16-byte aligned
  345. * @param min minimum value
  346. * constraints: must be in the range [-(1 << 24), 1 << 24]
  347. * @param max maximum value
  348. * constraints: must be in the range [-(1 << 24), 1 << 24]
  349. * @param len number of elements in the array
  350. * constraints: multiple of 32 greater than zero
  351. */
  352. void (*vector_clip_int32)(int32_t *dst, const int32_t *src, int32_t min,
  353. int32_t max, unsigned int len);
  354. op_fill_func fill_block_tab[2];
  355. } DSPContext;
  356. void ff_dsputil_static_init(void);
  357. void ff_dsputil_init(DSPContext* p, AVCodecContext *avctx);
  358. int ff_check_alignment(void);
  359. void ff_set_cmp(DSPContext* c, me_cmp_func *cmp, int type);
  360. #define BYTE_VEC32(c) ((c)*0x01010101UL)
  361. #define BYTE_VEC64(c) ((c)*0x0001000100010001UL)
  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 uint64_t rnd_avg64(uint64_t a, uint64_t b)
  371. {
  372. return (a | b) - (((a ^ b) & ~BYTE_VEC64(0x01)) >> 1);
  373. }
  374. static inline uint64_t no_rnd_avg64(uint64_t a, uint64_t b)
  375. {
  376. return (a & b) + (((a ^ b) & ~BYTE_VEC64(0x01)) >> 1);
  377. }
  378. void ff_dsputil_init_alpha(DSPContext* c, AVCodecContext *avctx);
  379. void ff_dsputil_init_arm(DSPContext* c, AVCodecContext *avctx);
  380. void ff_dsputil_init_bfin(DSPContext* c, AVCodecContext *avctx);
  381. void ff_dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx);
  382. void ff_dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx);
  383. void ff_dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx);
  384. void ff_dsputil_init_vis(DSPContext* c, AVCodecContext *avctx);
  385. #if (ARCH_ARM && HAVE_NEON) || ARCH_PPC || HAVE_MMX
  386. # define STRIDE_ALIGN 16
  387. #else
  388. # define STRIDE_ALIGN 8
  389. #endif
  390. // Some broken preprocessors need a second expansion
  391. // to be forced to tokenize __VA_ARGS__
  392. #define E(x) x
  393. #define LOCAL_ALIGNED_A(a, t, v, s, o, ...) \
  394. uint8_t la_##v[sizeof(t s o) + (a)]; \
  395. t (*v) o = (void *)FFALIGN((uintptr_t)la_##v, a)
  396. #define LOCAL_ALIGNED_D(a, t, v, s, o, ...) \
  397. DECLARE_ALIGNED(a, t, la_##v) s o; \
  398. t (*v) o = la_##v
  399. #define LOCAL_ALIGNED(a, t, v, ...) E(LOCAL_ALIGNED_A(a, t, v, __VA_ARGS__,,))
  400. #if HAVE_LOCAL_ALIGNED_8
  401. # define LOCAL_ALIGNED_8(t, v, ...) E(LOCAL_ALIGNED_D(8, t, v, __VA_ARGS__,,))
  402. #else
  403. # define LOCAL_ALIGNED_8(t, v, ...) LOCAL_ALIGNED(8, t, v, __VA_ARGS__)
  404. #endif
  405. #if HAVE_LOCAL_ALIGNED_16
  406. # define LOCAL_ALIGNED_16(t, v, ...) E(LOCAL_ALIGNED_D(16, t, v, __VA_ARGS__,,))
  407. #else
  408. # define LOCAL_ALIGNED_16(t, v, ...) LOCAL_ALIGNED(16, t, v, __VA_ARGS__)
  409. #endif
  410. #define WRAPPER8_16_SQ(name8, name16)\
  411. static int name16(void /*MpegEncContext*/ *s, uint8_t *dst, uint8_t *src, int stride, int h){\
  412. int score=0;\
  413. score +=name8(s, dst , src , stride, 8);\
  414. score +=name8(s, dst+8 , src+8 , stride, 8);\
  415. if(h==16){\
  416. dst += 8*stride;\
  417. src += 8*stride;\
  418. score +=name8(s, dst , src , stride, 8);\
  419. score +=name8(s, dst+8 , src+8 , stride, 8);\
  420. }\
  421. return score;\
  422. }
  423. #endif /* AVCODEC_DSPUTIL_H */