Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1101)

Side by Side Diff: third_party/libvpx/source/config/linux/arm-neon/vpx_dsp_rtcd.h

Issue 2319813002: Add vp9 high bit depth option (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #ifndef VPX_DSP_RTCD_H_ 1 #ifndef VPX_DSP_RTCD_H_
2 #define VPX_DSP_RTCD_H_ 2 #define VPX_DSP_RTCD_H_
3 3
4 #ifdef RTCD_C 4 #ifdef RTCD_C
5 #define RTCD_EXTERN 5 #define RTCD_EXTERN
6 #else 6 #else
7 #define RTCD_EXTERN extern 7 #define RTCD_EXTERN extern
8 #endif 8 #endif
9 9
10 /* 10 /*
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride); 256 void vpx_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int stride);
257 #define vpx_fdct32x32_rd vpx_fdct32x32_rd_c 257 #define vpx_fdct32x32_rd vpx_fdct32x32_rd_c
258 258
259 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride); 259 void vpx_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride);
260 #define vpx_fdct4x4 vpx_fdct4x4_c 260 #define vpx_fdct4x4 vpx_fdct4x4_c
261 261
262 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride); 262 void vpx_fdct4x4_1_c(const int16_t *input, tran_low_t *output, int stride);
263 #define vpx_fdct4x4_1 vpx_fdct4x4_1_c 263 #define vpx_fdct4x4_1 vpx_fdct4x4_1_c
264 264
265 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride); 265 void vpx_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride);
266 void vpx_fdct8x8_neon(const int16_t *input, tran_low_t *output, int stride); 266 #define vpx_fdct8x8 vpx_fdct8x8_c
267 #define vpx_fdct8x8 vpx_fdct8x8_neon
268 267
269 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride); 268 void vpx_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride);
270 void vpx_fdct8x8_1_neon(const int16_t *input, tran_low_t *output, int stride); 269 #define vpx_fdct8x8_1 vpx_fdct8x8_1_c
271 #define vpx_fdct8x8_1 vpx_fdct8x8_1_neon
272 270
273 void vpx_get16x16var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum); 271 void vpx_get16x16var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
274 void vpx_get16x16var_neon(const uint8_t *src_ptr, int source_stride, const uint8 _t *ref_ptr, int ref_stride, unsigned int *sse, int *sum); 272 void vpx_get16x16var_neon(const uint8_t *src_ptr, int source_stride, const uint8 _t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
275 #define vpx_get16x16var vpx_get16x16var_neon 273 #define vpx_get16x16var vpx_get16x16var_neon
276 274
277 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride); 275 unsigned int vpx_get4x4sse_cs_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride);
278 unsigned int vpx_get4x4sse_cs_neon(const unsigned char *src_ptr, int source_stri de, const unsigned char *ref_ptr, int ref_stride); 276 unsigned int vpx_get4x4sse_cs_neon(const unsigned char *src_ptr, int source_stri de, const unsigned char *ref_ptr, int ref_stride);
279 #define vpx_get4x4sse_cs vpx_get4x4sse_cs_neon 277 #define vpx_get4x4sse_cs vpx_get4x4sse_cs_neon
280 278
281 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *r ef_ptr, int ref_stride, unsigned int *sse, int *sum); 279 void vpx_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *r ef_ptr, int ref_stride, unsigned int *sse, int *sum);
(...skipping 23 matching lines...) Expand all
305 void vpx_hadamard_16x16_neon(const int16_t *src_diff, int src_stride, int16_t *c oeff); 303 void vpx_hadamard_16x16_neon(const int16_t *src_diff, int src_stride, int16_t *c oeff);
306 #define vpx_hadamard_16x16 vpx_hadamard_16x16_neon 304 #define vpx_hadamard_16x16 vpx_hadamard_16x16_neon
307 305
308 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff) ; 306 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff) ;
309 void vpx_hadamard_8x8_neon(const int16_t *src_diff, int src_stride, int16_t *coe ff); 307 void vpx_hadamard_8x8_neon(const int16_t *src_diff, int src_stride, int16_t *coe ff);
310 #define vpx_hadamard_8x8 vpx_hadamard_8x8_neon 308 #define vpx_hadamard_8x8 vpx_hadamard_8x8_neon
311 309
312 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left); 310 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
313 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c 311 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c
314 312
313 void vpx_highbd_10_get16x16var_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
314 #define vpx_highbd_10_get16x16var vpx_highbd_10_get16x16var_c
315
316 void vpx_highbd_10_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
317 #define vpx_highbd_10_get8x8var vpx_highbd_10_get8x8var_c
318
319 unsigned int vpx_highbd_10_mse16x16_c(const uint8_t *src_ptr, int source_stride , const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
320 #define vpx_highbd_10_mse16x16 vpx_highbd_10_mse16x16_c
321
322 unsigned int vpx_highbd_10_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
323 #define vpx_highbd_10_mse16x8 vpx_highbd_10_mse16x8_c
324
325 unsigned int vpx_highbd_10_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
326 #define vpx_highbd_10_mse8x16 vpx_highbd_10_mse8x16_c
327
328 unsigned int vpx_highbd_10_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
329 #define vpx_highbd_10_mse8x8 vpx_highbd_10_mse8x8_c
330
331 uint32_t vpx_highbd_10_sub_pixel_avg_variance16x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
332 #define vpx_highbd_10_sub_pixel_avg_variance16x16 vpx_highbd_10_sub_pixel_avg_va riance16x16_c
333
334 uint32_t vpx_highbd_10_sub_pixel_avg_variance16x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
335 #define vpx_highbd_10_sub_pixel_avg_variance16x32 vpx_highbd_10_sub_pixel_avg_va riance16x32_c
336
337 uint32_t vpx_highbd_10_sub_pixel_avg_variance16x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
338 #define vpx_highbd_10_sub_pixel_avg_variance16x8 vpx_highbd_10_sub_pixel_avg_var iance16x8_c
339
340 uint32_t vpx_highbd_10_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
341 #define vpx_highbd_10_sub_pixel_avg_variance32x16 vpx_highbd_10_sub_pixel_avg_va riance32x16_c
342
343 uint32_t vpx_highbd_10_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
344 #define vpx_highbd_10_sub_pixel_avg_variance32x32 vpx_highbd_10_sub_pixel_avg_va riance32x32_c
345
346 uint32_t vpx_highbd_10_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
347 #define vpx_highbd_10_sub_pixel_avg_variance32x64 vpx_highbd_10_sub_pixel_avg_va riance32x64_c
348
349 uint32_t vpx_highbd_10_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
350 #define vpx_highbd_10_sub_pixel_avg_variance4x4 vpx_highbd_10_sub_pixel_avg_vari ance4x4_c
351
352 uint32_t vpx_highbd_10_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
353 #define vpx_highbd_10_sub_pixel_avg_variance4x8 vpx_highbd_10_sub_pixel_avg_vari ance4x8_c
354
355 uint32_t vpx_highbd_10_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
356 #define vpx_highbd_10_sub_pixel_avg_variance64x32 vpx_highbd_10_sub_pixel_avg_va riance64x32_c
357
358 uint32_t vpx_highbd_10_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
359 #define vpx_highbd_10_sub_pixel_avg_variance64x64 vpx_highbd_10_sub_pixel_avg_va riance64x64_c
360
361 uint32_t vpx_highbd_10_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
362 #define vpx_highbd_10_sub_pixel_avg_variance8x16 vpx_highbd_10_sub_pixel_avg_var iance8x16_c
363
364 uint32_t vpx_highbd_10_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
365 #define vpx_highbd_10_sub_pixel_avg_variance8x4 vpx_highbd_10_sub_pixel_avg_vari ance8x4_c
366
367 uint32_t vpx_highbd_10_sub_pixel_avg_variance8x8_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
368 #define vpx_highbd_10_sub_pixel_avg_variance8x8 vpx_highbd_10_sub_pixel_avg_vari ance8x8_c
369
370 uint32_t vpx_highbd_10_sub_pixel_variance16x16_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
371 #define vpx_highbd_10_sub_pixel_variance16x16 vpx_highbd_10_sub_pixel_variance16 x16_c
372
373 uint32_t vpx_highbd_10_sub_pixel_variance16x32_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
374 #define vpx_highbd_10_sub_pixel_variance16x32 vpx_highbd_10_sub_pixel_variance16 x32_c
375
376 uint32_t vpx_highbd_10_sub_pixel_variance16x8_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
377 #define vpx_highbd_10_sub_pixel_variance16x8 vpx_highbd_10_sub_pixel_variance16x 8_c
378
379 uint32_t vpx_highbd_10_sub_pixel_variance32x16_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
380 #define vpx_highbd_10_sub_pixel_variance32x16 vpx_highbd_10_sub_pixel_variance32 x16_c
381
382 uint32_t vpx_highbd_10_sub_pixel_variance32x32_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
383 #define vpx_highbd_10_sub_pixel_variance32x32 vpx_highbd_10_sub_pixel_variance32 x32_c
384
385 uint32_t vpx_highbd_10_sub_pixel_variance32x64_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
386 #define vpx_highbd_10_sub_pixel_variance32x64 vpx_highbd_10_sub_pixel_variance32 x64_c
387
388 uint32_t vpx_highbd_10_sub_pixel_variance4x4_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
389 #define vpx_highbd_10_sub_pixel_variance4x4 vpx_highbd_10_sub_pixel_variance4x4_ c
390
391 uint32_t vpx_highbd_10_sub_pixel_variance4x8_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
392 #define vpx_highbd_10_sub_pixel_variance4x8 vpx_highbd_10_sub_pixel_variance4x8_ c
393
394 uint32_t vpx_highbd_10_sub_pixel_variance64x32_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
395 #define vpx_highbd_10_sub_pixel_variance64x32 vpx_highbd_10_sub_pixel_variance64 x32_c
396
397 uint32_t vpx_highbd_10_sub_pixel_variance64x64_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
398 #define vpx_highbd_10_sub_pixel_variance64x64 vpx_highbd_10_sub_pixel_variance64 x64_c
399
400 uint32_t vpx_highbd_10_sub_pixel_variance8x16_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
401 #define vpx_highbd_10_sub_pixel_variance8x16 vpx_highbd_10_sub_pixel_variance8x1 6_c
402
403 uint32_t vpx_highbd_10_sub_pixel_variance8x4_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
404 #define vpx_highbd_10_sub_pixel_variance8x4 vpx_highbd_10_sub_pixel_variance8x4_ c
405
406 uint32_t vpx_highbd_10_sub_pixel_variance8x8_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
407 #define vpx_highbd_10_sub_pixel_variance8x8 vpx_highbd_10_sub_pixel_variance8x8_ c
408
409 unsigned int vpx_highbd_10_variance16x16_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
410 #define vpx_highbd_10_variance16x16 vpx_highbd_10_variance16x16_c
411
412 unsigned int vpx_highbd_10_variance16x32_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
413 #define vpx_highbd_10_variance16x32 vpx_highbd_10_variance16x32_c
414
415 unsigned int vpx_highbd_10_variance16x8_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
416 #define vpx_highbd_10_variance16x8 vpx_highbd_10_variance16x8_c
417
418 unsigned int vpx_highbd_10_variance32x16_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
419 #define vpx_highbd_10_variance32x16 vpx_highbd_10_variance32x16_c
420
421 unsigned int vpx_highbd_10_variance32x32_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
422 #define vpx_highbd_10_variance32x32 vpx_highbd_10_variance32x32_c
423
424 unsigned int vpx_highbd_10_variance32x64_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
425 #define vpx_highbd_10_variance32x64 vpx_highbd_10_variance32x64_c
426
427 unsigned int vpx_highbd_10_variance4x4_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
428 #define vpx_highbd_10_variance4x4 vpx_highbd_10_variance4x4_c
429
430 unsigned int vpx_highbd_10_variance4x8_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
431 #define vpx_highbd_10_variance4x8 vpx_highbd_10_variance4x8_c
432
433 unsigned int vpx_highbd_10_variance64x32_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
434 #define vpx_highbd_10_variance64x32 vpx_highbd_10_variance64x32_c
435
436 unsigned int vpx_highbd_10_variance64x64_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
437 #define vpx_highbd_10_variance64x64 vpx_highbd_10_variance64x64_c
438
439 unsigned int vpx_highbd_10_variance8x16_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
440 #define vpx_highbd_10_variance8x16 vpx_highbd_10_variance8x16_c
441
442 unsigned int vpx_highbd_10_variance8x4_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
443 #define vpx_highbd_10_variance8x4 vpx_highbd_10_variance8x4_c
444
445 unsigned int vpx_highbd_10_variance8x8_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
446 #define vpx_highbd_10_variance8x8 vpx_highbd_10_variance8x8_c
447
448 void vpx_highbd_12_get16x16var_c(const uint8_t *src_ptr, int source_stride, cons t uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
449 #define vpx_highbd_12_get16x16var vpx_highbd_12_get16x16var_c
450
451 void vpx_highbd_12_get8x8var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
452 #define vpx_highbd_12_get8x8var vpx_highbd_12_get8x8var_c
453
454 unsigned int vpx_highbd_12_mse16x16_c(const uint8_t *src_ptr, int source_stride , const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
455 #define vpx_highbd_12_mse16x16 vpx_highbd_12_mse16x16_c
456
457 unsigned int vpx_highbd_12_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
458 #define vpx_highbd_12_mse16x8 vpx_highbd_12_mse16x8_c
459
460 unsigned int vpx_highbd_12_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
461 #define vpx_highbd_12_mse8x16 vpx_highbd_12_mse8x16_c
462
463 unsigned int vpx_highbd_12_mse8x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
464 #define vpx_highbd_12_mse8x8 vpx_highbd_12_mse8x8_c
465
466 uint32_t vpx_highbd_12_sub_pixel_avg_variance16x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
467 #define vpx_highbd_12_sub_pixel_avg_variance16x16 vpx_highbd_12_sub_pixel_avg_va riance16x16_c
468
469 uint32_t vpx_highbd_12_sub_pixel_avg_variance16x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
470 #define vpx_highbd_12_sub_pixel_avg_variance16x32 vpx_highbd_12_sub_pixel_avg_va riance16x32_c
471
472 uint32_t vpx_highbd_12_sub_pixel_avg_variance16x8_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
473 #define vpx_highbd_12_sub_pixel_avg_variance16x8 vpx_highbd_12_sub_pixel_avg_var iance16x8_c
474
475 uint32_t vpx_highbd_12_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
476 #define vpx_highbd_12_sub_pixel_avg_variance32x16 vpx_highbd_12_sub_pixel_avg_va riance32x16_c
477
478 uint32_t vpx_highbd_12_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
479 #define vpx_highbd_12_sub_pixel_avg_variance32x32 vpx_highbd_12_sub_pixel_avg_va riance32x32_c
480
481 uint32_t vpx_highbd_12_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
482 #define vpx_highbd_12_sub_pixel_avg_variance32x64 vpx_highbd_12_sub_pixel_avg_va riance32x64_c
483
484 uint32_t vpx_highbd_12_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
485 #define vpx_highbd_12_sub_pixel_avg_variance4x4 vpx_highbd_12_sub_pixel_avg_vari ance4x4_c
486
487 uint32_t vpx_highbd_12_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
488 #define vpx_highbd_12_sub_pixel_avg_variance4x8 vpx_highbd_12_sub_pixel_avg_vari ance4x8_c
489
490 uint32_t vpx_highbd_12_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
491 #define vpx_highbd_12_sub_pixel_avg_variance64x32 vpx_highbd_12_sub_pixel_avg_va riance64x32_c
492
493 uint32_t vpx_highbd_12_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_strid e, uint32_t *sse, const uint8_t *second_pred);
494 #define vpx_highbd_12_sub_pixel_avg_variance64x64 vpx_highbd_12_sub_pixel_avg_va riance64x64_c
495
496 uint32_t vpx_highbd_12_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
497 #define vpx_highbd_12_sub_pixel_avg_variance8x16 vpx_highbd_12_sub_pixel_avg_var iance8x16_c
498
499 uint32_t vpx_highbd_12_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
500 #define vpx_highbd_12_sub_pixel_avg_variance8x4 vpx_highbd_12_sub_pixel_avg_vari ance8x4_c
501
502 uint32_t vpx_highbd_12_sub_pixel_avg_variance8x8_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
503 #define vpx_highbd_12_sub_pixel_avg_variance8x8 vpx_highbd_12_sub_pixel_avg_vari ance8x8_c
504
505 uint32_t vpx_highbd_12_sub_pixel_variance16x16_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
506 #define vpx_highbd_12_sub_pixel_variance16x16 vpx_highbd_12_sub_pixel_variance16 x16_c
507
508 uint32_t vpx_highbd_12_sub_pixel_variance16x32_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
509 #define vpx_highbd_12_sub_pixel_variance16x32 vpx_highbd_12_sub_pixel_variance16 x32_c
510
511 uint32_t vpx_highbd_12_sub_pixel_variance16x8_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
512 #define vpx_highbd_12_sub_pixel_variance16x8 vpx_highbd_12_sub_pixel_variance16x 8_c
513
514 uint32_t vpx_highbd_12_sub_pixel_variance32x16_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
515 #define vpx_highbd_12_sub_pixel_variance32x16 vpx_highbd_12_sub_pixel_variance32 x16_c
516
517 uint32_t vpx_highbd_12_sub_pixel_variance32x32_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
518 #define vpx_highbd_12_sub_pixel_variance32x32 vpx_highbd_12_sub_pixel_variance32 x32_c
519
520 uint32_t vpx_highbd_12_sub_pixel_variance32x64_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
521 #define vpx_highbd_12_sub_pixel_variance32x64 vpx_highbd_12_sub_pixel_variance32 x64_c
522
523 uint32_t vpx_highbd_12_sub_pixel_variance4x4_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
524 #define vpx_highbd_12_sub_pixel_variance4x4 vpx_highbd_12_sub_pixel_variance4x4_ c
525
526 uint32_t vpx_highbd_12_sub_pixel_variance4x8_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
527 #define vpx_highbd_12_sub_pixel_variance4x8 vpx_highbd_12_sub_pixel_variance4x8_ c
528
529 uint32_t vpx_highbd_12_sub_pixel_variance64x32_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
530 #define vpx_highbd_12_sub_pixel_variance64x32 vpx_highbd_12_sub_pixel_variance64 x32_c
531
532 uint32_t vpx_highbd_12_sub_pixel_variance64x64_c(const uint8_t *src_ptr, int sou rce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, u int32_t *sse);
533 #define vpx_highbd_12_sub_pixel_variance64x64 vpx_highbd_12_sub_pixel_variance64 x64_c
534
535 uint32_t vpx_highbd_12_sub_pixel_variance8x16_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
536 #define vpx_highbd_12_sub_pixel_variance8x16 vpx_highbd_12_sub_pixel_variance8x1 6_c
537
538 uint32_t vpx_highbd_12_sub_pixel_variance8x4_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
539 #define vpx_highbd_12_sub_pixel_variance8x4 vpx_highbd_12_sub_pixel_variance8x4_ c
540
541 uint32_t vpx_highbd_12_sub_pixel_variance8x8_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
542 #define vpx_highbd_12_sub_pixel_variance8x8 vpx_highbd_12_sub_pixel_variance8x8_ c
543
544 unsigned int vpx_highbd_12_variance16x16_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
545 #define vpx_highbd_12_variance16x16 vpx_highbd_12_variance16x16_c
546
547 unsigned int vpx_highbd_12_variance16x32_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
548 #define vpx_highbd_12_variance16x32 vpx_highbd_12_variance16x32_c
549
550 unsigned int vpx_highbd_12_variance16x8_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
551 #define vpx_highbd_12_variance16x8 vpx_highbd_12_variance16x8_c
552
553 unsigned int vpx_highbd_12_variance32x16_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
554 #define vpx_highbd_12_variance32x16 vpx_highbd_12_variance32x16_c
555
556 unsigned int vpx_highbd_12_variance32x32_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
557 #define vpx_highbd_12_variance32x32 vpx_highbd_12_variance32x32_c
558
559 unsigned int vpx_highbd_12_variance32x64_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
560 #define vpx_highbd_12_variance32x64 vpx_highbd_12_variance32x64_c
561
562 unsigned int vpx_highbd_12_variance4x4_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
563 #define vpx_highbd_12_variance4x4 vpx_highbd_12_variance4x4_c
564
565 unsigned int vpx_highbd_12_variance4x8_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
566 #define vpx_highbd_12_variance4x8 vpx_highbd_12_variance4x8_c
567
568 unsigned int vpx_highbd_12_variance64x32_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
569 #define vpx_highbd_12_variance64x32 vpx_highbd_12_variance64x32_c
570
571 unsigned int vpx_highbd_12_variance64x64_c(const uint8_t *src_ptr, int source_st ride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
572 #define vpx_highbd_12_variance64x64 vpx_highbd_12_variance64x64_c
573
574 unsigned int vpx_highbd_12_variance8x16_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
575 #define vpx_highbd_12_variance8x16 vpx_highbd_12_variance8x16_c
576
577 unsigned int vpx_highbd_12_variance8x4_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
578 #define vpx_highbd_12_variance8x4 vpx_highbd_12_variance8x4_c
579
580 unsigned int vpx_highbd_12_variance8x8_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
581 #define vpx_highbd_12_variance8x8 vpx_highbd_12_variance8x8_c
582
583 void vpx_highbd_8_get16x16var_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
584 #define vpx_highbd_8_get16x16var vpx_highbd_8_get16x16var_c
585
586 void vpx_highbd_8_get8x8var_c(const uint8_t *src_ptr, int source_stride, const u int8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum);
587 #define vpx_highbd_8_get8x8var vpx_highbd_8_get8x8var_c
588
589 unsigned int vpx_highbd_8_mse16x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
590 #define vpx_highbd_8_mse16x16 vpx_highbd_8_mse16x16_c
591
592 unsigned int vpx_highbd_8_mse16x8_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
593 #define vpx_highbd_8_mse16x8 vpx_highbd_8_mse16x8_c
594
595 unsigned int vpx_highbd_8_mse8x16_c(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
596 #define vpx_highbd_8_mse8x16 vpx_highbd_8_mse8x16_c
597
598 unsigned int vpx_highbd_8_mse8x8_c(const uint8_t *src_ptr, int source_stride, c onst uint8_t *ref_ptr, int recon_stride, unsigned int *sse);
599 #define vpx_highbd_8_mse8x8 vpx_highbd_8_mse8x8_c
600
601 uint32_t vpx_highbd_8_sub_pixel_avg_variance16x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
602 #define vpx_highbd_8_sub_pixel_avg_variance16x16 vpx_highbd_8_sub_pixel_avg_vari ance16x16_c
603
604 uint32_t vpx_highbd_8_sub_pixel_avg_variance16x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
605 #define vpx_highbd_8_sub_pixel_avg_variance16x32 vpx_highbd_8_sub_pixel_avg_vari ance16x32_c
606
607 uint32_t vpx_highbd_8_sub_pixel_avg_variance16x8_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
608 #define vpx_highbd_8_sub_pixel_avg_variance16x8 vpx_highbd_8_sub_pixel_avg_varia nce16x8_c
609
610 uint32_t vpx_highbd_8_sub_pixel_avg_variance32x16_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
611 #define vpx_highbd_8_sub_pixel_avg_variance32x16 vpx_highbd_8_sub_pixel_avg_vari ance32x16_c
612
613 uint32_t vpx_highbd_8_sub_pixel_avg_variance32x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
614 #define vpx_highbd_8_sub_pixel_avg_variance32x32 vpx_highbd_8_sub_pixel_avg_vari ance32x32_c
615
616 uint32_t vpx_highbd_8_sub_pixel_avg_variance32x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
617 #define vpx_highbd_8_sub_pixel_avg_variance32x64 vpx_highbd_8_sub_pixel_avg_vari ance32x64_c
618
619 uint32_t vpx_highbd_8_sub_pixel_avg_variance4x4_c(const uint8_t *src_ptr, int so urce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
620 #define vpx_highbd_8_sub_pixel_avg_variance4x4 vpx_highbd_8_sub_pixel_avg_varian ce4x4_c
621
622 uint32_t vpx_highbd_8_sub_pixel_avg_variance4x8_c(const uint8_t *src_ptr, int so urce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
623 #define vpx_highbd_8_sub_pixel_avg_variance4x8 vpx_highbd_8_sub_pixel_avg_varian ce4x8_c
624
625 uint32_t vpx_highbd_8_sub_pixel_avg_variance64x32_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
626 #define vpx_highbd_8_sub_pixel_avg_variance64x32 vpx_highbd_8_sub_pixel_avg_vari ance64x32_c
627
628 uint32_t vpx_highbd_8_sub_pixel_avg_variance64x64_c(const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride , uint32_t *sse, const uint8_t *second_pred);
629 #define vpx_highbd_8_sub_pixel_avg_variance64x64 vpx_highbd_8_sub_pixel_avg_vari ance64x64_c
630
631 uint32_t vpx_highbd_8_sub_pixel_avg_variance8x16_c(const uint8_t *src_ptr, int s ource_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
632 #define vpx_highbd_8_sub_pixel_avg_variance8x16 vpx_highbd_8_sub_pixel_avg_varia nce8x16_c
633
634 uint32_t vpx_highbd_8_sub_pixel_avg_variance8x4_c(const uint8_t *src_ptr, int so urce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
635 #define vpx_highbd_8_sub_pixel_avg_variance8x4 vpx_highbd_8_sub_pixel_avg_varian ce8x4_c
636
637 uint32_t vpx_highbd_8_sub_pixel_avg_variance8x8_c(const uint8_t *src_ptr, int so urce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint32_t *sse, const uint8_t *second_pred);
638 #define vpx_highbd_8_sub_pixel_avg_variance8x8 vpx_highbd_8_sub_pixel_avg_varian ce8x8_c
639
640 uint32_t vpx_highbd_8_sub_pixel_variance16x16_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
641 #define vpx_highbd_8_sub_pixel_variance16x16 vpx_highbd_8_sub_pixel_variance16x1 6_c
642
643 uint32_t vpx_highbd_8_sub_pixel_variance16x32_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
644 #define vpx_highbd_8_sub_pixel_variance16x32 vpx_highbd_8_sub_pixel_variance16x3 2_c
645
646 uint32_t vpx_highbd_8_sub_pixel_variance16x8_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
647 #define vpx_highbd_8_sub_pixel_variance16x8 vpx_highbd_8_sub_pixel_variance16x8_ c
648
649 uint32_t vpx_highbd_8_sub_pixel_variance32x16_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
650 #define vpx_highbd_8_sub_pixel_variance32x16 vpx_highbd_8_sub_pixel_variance32x1 6_c
651
652 uint32_t vpx_highbd_8_sub_pixel_variance32x32_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
653 #define vpx_highbd_8_sub_pixel_variance32x32 vpx_highbd_8_sub_pixel_variance32x3 2_c
654
655 uint32_t vpx_highbd_8_sub_pixel_variance32x64_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
656 #define vpx_highbd_8_sub_pixel_variance32x64 vpx_highbd_8_sub_pixel_variance32x6 4_c
657
658 uint32_t vpx_highbd_8_sub_pixel_variance4x4_c(const uint8_t *src_ptr, int source _stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint 32_t *sse);
659 #define vpx_highbd_8_sub_pixel_variance4x4 vpx_highbd_8_sub_pixel_variance4x4_c
660
661 uint32_t vpx_highbd_8_sub_pixel_variance4x8_c(const uint8_t *src_ptr, int source _stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint 32_t *sse);
662 #define vpx_highbd_8_sub_pixel_variance4x8 vpx_highbd_8_sub_pixel_variance4x8_c
663
664 uint32_t vpx_highbd_8_sub_pixel_variance64x32_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
665 #define vpx_highbd_8_sub_pixel_variance64x32 vpx_highbd_8_sub_pixel_variance64x3 2_c
666
667 uint32_t vpx_highbd_8_sub_pixel_variance64x64_c(const uint8_t *src_ptr, int sour ce_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, ui nt32_t *sse);
668 #define vpx_highbd_8_sub_pixel_variance64x64 vpx_highbd_8_sub_pixel_variance64x6 4_c
669
670 uint32_t vpx_highbd_8_sub_pixel_variance8x16_c(const uint8_t *src_ptr, int sourc e_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uin t32_t *sse);
671 #define vpx_highbd_8_sub_pixel_variance8x16 vpx_highbd_8_sub_pixel_variance8x16_ c
672
673 uint32_t vpx_highbd_8_sub_pixel_variance8x4_c(const uint8_t *src_ptr, int source _stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint 32_t *sse);
674 #define vpx_highbd_8_sub_pixel_variance8x4 vpx_highbd_8_sub_pixel_variance8x4_c
675
676 uint32_t vpx_highbd_8_sub_pixel_variance8x8_c(const uint8_t *src_ptr, int source _stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_stride, uint 32_t *sse);
677 #define vpx_highbd_8_sub_pixel_variance8x8 vpx_highbd_8_sub_pixel_variance8x8_c
678
679 unsigned int vpx_highbd_8_variance16x16_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
680 #define vpx_highbd_8_variance16x16 vpx_highbd_8_variance16x16_c
681
682 unsigned int vpx_highbd_8_variance16x32_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
683 #define vpx_highbd_8_variance16x32 vpx_highbd_8_variance16x32_c
684
685 unsigned int vpx_highbd_8_variance16x8_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
686 #define vpx_highbd_8_variance16x8 vpx_highbd_8_variance16x8_c
687
688 unsigned int vpx_highbd_8_variance32x16_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
689 #define vpx_highbd_8_variance32x16 vpx_highbd_8_variance32x16_c
690
691 unsigned int vpx_highbd_8_variance32x32_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
692 #define vpx_highbd_8_variance32x32 vpx_highbd_8_variance32x32_c
693
694 unsigned int vpx_highbd_8_variance32x64_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
695 #define vpx_highbd_8_variance32x64 vpx_highbd_8_variance32x64_c
696
697 unsigned int vpx_highbd_8_variance4x4_c(const uint8_t *src_ptr, int source_strid e, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
698 #define vpx_highbd_8_variance4x4 vpx_highbd_8_variance4x4_c
699
700 unsigned int vpx_highbd_8_variance4x8_c(const uint8_t *src_ptr, int source_strid e, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
701 #define vpx_highbd_8_variance4x8 vpx_highbd_8_variance4x8_c
702
703 unsigned int vpx_highbd_8_variance64x32_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
704 #define vpx_highbd_8_variance64x32 vpx_highbd_8_variance64x32_c
705
706 unsigned int vpx_highbd_8_variance64x64_c(const uint8_t *src_ptr, int source_str ide, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
707 #define vpx_highbd_8_variance64x64 vpx_highbd_8_variance64x64_c
708
709 unsigned int vpx_highbd_8_variance8x16_c(const uint8_t *src_ptr, int source_stri de, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
710 #define vpx_highbd_8_variance8x16 vpx_highbd_8_variance8x16_c
711
712 unsigned int vpx_highbd_8_variance8x4_c(const uint8_t *src_ptr, int source_strid e, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
713 #define vpx_highbd_8_variance8x4 vpx_highbd_8_variance8x4_c
714
715 unsigned int vpx_highbd_8_variance8x8_c(const uint8_t *src_ptr, int source_strid e, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
716 #define vpx_highbd_8_variance8x8 vpx_highbd_8_variance8x8_c
717
718 unsigned int vpx_highbd_avg_4x4_c(const uint8_t *, int p);
719 #define vpx_highbd_avg_4x4 vpx_highbd_avg_4x4_c
720
721 unsigned int vpx_highbd_avg_8x8_c(const uint8_t *, int p);
722 #define vpx_highbd_avg_8x8 vpx_highbd_avg_8x8_c
723
724 void vpx_highbd_comp_avg_pred_c(uint16_t *comp_pred, const uint8_t *pred8, int w idth, int height, const uint8_t *ref8, int ref_stride);
725 #define vpx_highbd_comp_avg_pred vpx_highbd_comp_avg_pred_c
726
727 void vpx_highbd_convolve8_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *d st, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps);
728 #define vpx_highbd_convolve8 vpx_highbd_convolve8_c
729
730 void vpx_highbd_convolve8_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_ t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int1 6_t *filter_y, int y_step_q4, int w, int h, int bps);
731 #define vpx_highbd_convolve8_avg vpx_highbd_convolve8_avg_c
732
733 void vpx_highbd_convolve8_avg_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, cons t int16_t *filter_y, int y_step_q4, int w, int h, int bps);
734 #define vpx_highbd_convolve8_avg_horiz vpx_highbd_convolve8_avg_horiz_c
735
736 void vpx_highbd_convolve8_avg_vert_c(const uint8_t *src, ptrdiff_t src_stride, u int8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h, int bps);
737 #define vpx_highbd_convolve8_avg_vert vpx_highbd_convolve8_avg_vert_c
738
739 void vpx_highbd_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint 8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const in t16_t *filter_y, int y_step_q4, int w, int h, int bps);
740 #define vpx_highbd_convolve8_horiz vpx_highbd_convolve8_horiz_c
741
742 void vpx_highbd_convolve8_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8 _t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int 16_t *filter_y, int y_step_q4, int w, int h, int bps);
743 #define vpx_highbd_convolve8_vert vpx_highbd_convolve8_vert_c
744
745 void vpx_highbd_convolve_avg_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16 _t *filter_y, int y_step_q4, int w, int h, int bps);
746 #define vpx_highbd_convolve_avg vpx_highbd_convolve_avg_c
747
748 void vpx_highbd_convolve_copy_c(const uint8_t *src, ptrdiff_t src_stride, uint8_ t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int1 6_t *filter_y, int y_step_q4, int w, int h, int bps);
749 #define vpx_highbd_convolve_copy vpx_highbd_convolve_copy_c
750
751 void vpx_highbd_d117_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
752 #define vpx_highbd_d117_predictor_16x16 vpx_highbd_d117_predictor_16x16_c
753
754 void vpx_highbd_d117_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
755 #define vpx_highbd_d117_predictor_32x32 vpx_highbd_d117_predictor_32x32_c
756
757 void vpx_highbd_d117_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
758 #define vpx_highbd_d117_predictor_4x4 vpx_highbd_d117_predictor_4x4_c
759
760 void vpx_highbd_d117_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
761 #define vpx_highbd_d117_predictor_8x8 vpx_highbd_d117_predictor_8x8_c
762
763 void vpx_highbd_d135_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
764 #define vpx_highbd_d135_predictor_16x16 vpx_highbd_d135_predictor_16x16_c
765
766 void vpx_highbd_d135_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
767 #define vpx_highbd_d135_predictor_32x32 vpx_highbd_d135_predictor_32x32_c
768
769 void vpx_highbd_d135_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
770 #define vpx_highbd_d135_predictor_4x4 vpx_highbd_d135_predictor_4x4_c
771
772 void vpx_highbd_d135_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
773 #define vpx_highbd_d135_predictor_8x8 vpx_highbd_d135_predictor_8x8_c
774
775 void vpx_highbd_d153_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
776 #define vpx_highbd_d153_predictor_16x16 vpx_highbd_d153_predictor_16x16_c
777
778 void vpx_highbd_d153_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
779 #define vpx_highbd_d153_predictor_32x32 vpx_highbd_d153_predictor_32x32_c
780
781 void vpx_highbd_d153_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
782 #define vpx_highbd_d153_predictor_4x4 vpx_highbd_d153_predictor_4x4_c
783
784 void vpx_highbd_d153_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
785 #define vpx_highbd_d153_predictor_8x8 vpx_highbd_d153_predictor_8x8_c
786
787 void vpx_highbd_d207_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
788 #define vpx_highbd_d207_predictor_16x16 vpx_highbd_d207_predictor_16x16_c
789
790 void vpx_highbd_d207_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
791 #define vpx_highbd_d207_predictor_32x32 vpx_highbd_d207_predictor_32x32_c
792
793 void vpx_highbd_d207_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
794 #define vpx_highbd_d207_predictor_4x4 vpx_highbd_d207_predictor_4x4_c
795
796 void vpx_highbd_d207_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
797 #define vpx_highbd_d207_predictor_8x8 vpx_highbd_d207_predictor_8x8_c
798
799 void vpx_highbd_d207e_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
800 #define vpx_highbd_d207e_predictor_16x16 vpx_highbd_d207e_predictor_16x16_c
801
802 void vpx_highbd_d207e_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
803 #define vpx_highbd_d207e_predictor_32x32 vpx_highbd_d207e_predictor_32x32_c
804
805 void vpx_highbd_d207e_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const u int16_t *above, const uint16_t *left, int bd);
806 #define vpx_highbd_d207e_predictor_4x4 vpx_highbd_d207e_predictor_4x4_c
807
808 void vpx_highbd_d207e_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const u int16_t *above, const uint16_t *left, int bd);
809 #define vpx_highbd_d207e_predictor_8x8 vpx_highbd_d207e_predictor_8x8_c
810
811 void vpx_highbd_d45_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const u int16_t *above, const uint16_t *left, int bd);
812 #define vpx_highbd_d45_predictor_16x16 vpx_highbd_d45_predictor_16x16_c
813
814 void vpx_highbd_d45_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const u int16_t *above, const uint16_t *left, int bd);
815 #define vpx_highbd_d45_predictor_32x32 vpx_highbd_d45_predictor_32x32_c
816
817 void vpx_highbd_d45_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uin t16_t *above, const uint16_t *left, int bd);
818 #define vpx_highbd_d45_predictor_4x4 vpx_highbd_d45_predictor_4x4_c
819
820 void vpx_highbd_d45_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uin t16_t *above, const uint16_t *left, int bd);
821 #define vpx_highbd_d45_predictor_8x8 vpx_highbd_d45_predictor_8x8_c
822
823 void vpx_highbd_d45e_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
824 #define vpx_highbd_d45e_predictor_16x16 vpx_highbd_d45e_predictor_16x16_c
825
826 void vpx_highbd_d45e_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
827 #define vpx_highbd_d45e_predictor_32x32 vpx_highbd_d45e_predictor_32x32_c
828
829 void vpx_highbd_d45e_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
830 #define vpx_highbd_d45e_predictor_4x4 vpx_highbd_d45e_predictor_4x4_c
831
832 void vpx_highbd_d45e_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
833 #define vpx_highbd_d45e_predictor_8x8 vpx_highbd_d45e_predictor_8x8_c
834
835 void vpx_highbd_d63_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const u int16_t *above, const uint16_t *left, int bd);
836 #define vpx_highbd_d63_predictor_16x16 vpx_highbd_d63_predictor_16x16_c
837
838 void vpx_highbd_d63_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const u int16_t *above, const uint16_t *left, int bd);
839 #define vpx_highbd_d63_predictor_32x32 vpx_highbd_d63_predictor_32x32_c
840
841 void vpx_highbd_d63_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uin t16_t *above, const uint16_t *left, int bd);
842 #define vpx_highbd_d63_predictor_4x4 vpx_highbd_d63_predictor_4x4_c
843
844 void vpx_highbd_d63_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uin t16_t *above, const uint16_t *left, int bd);
845 #define vpx_highbd_d63_predictor_8x8 vpx_highbd_d63_predictor_8x8_c
846
847 void vpx_highbd_d63e_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
848 #define vpx_highbd_d63e_predictor_16x16 vpx_highbd_d63e_predictor_16x16_c
849
850 void vpx_highbd_d63e_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
851 #define vpx_highbd_d63e_predictor_32x32 vpx_highbd_d63e_predictor_32x32_c
852
853 void vpx_highbd_d63e_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
854 #define vpx_highbd_d63e_predictor_4x4 vpx_highbd_d63e_predictor_4x4_c
855
856 void vpx_highbd_d63e_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
857 #define vpx_highbd_d63e_predictor_8x8 vpx_highbd_d63e_predictor_8x8_c
858
859 void vpx_highbd_dc_128_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, cons t uint16_t *above, const uint16_t *left, int bd);
860 #define vpx_highbd_dc_128_predictor_16x16 vpx_highbd_dc_128_predictor_16x16_c
861
862 void vpx_highbd_dc_128_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, cons t uint16_t *above, const uint16_t *left, int bd);
863 #define vpx_highbd_dc_128_predictor_32x32 vpx_highbd_dc_128_predictor_32x32_c
864
865 void vpx_highbd_dc_128_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
866 #define vpx_highbd_dc_128_predictor_4x4 vpx_highbd_dc_128_predictor_4x4_c
867
868 void vpx_highbd_dc_128_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
869 #define vpx_highbd_dc_128_predictor_8x8 vpx_highbd_dc_128_predictor_8x8_c
870
871 void vpx_highbd_dc_left_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, con st uint16_t *above, const uint16_t *left, int bd);
872 #define vpx_highbd_dc_left_predictor_16x16 vpx_highbd_dc_left_predictor_16x16_c
873
874 void vpx_highbd_dc_left_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, con st uint16_t *above, const uint16_t *left, int bd);
875 #define vpx_highbd_dc_left_predictor_32x32 vpx_highbd_dc_left_predictor_32x32_c
876
877 void vpx_highbd_dc_left_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
878 #define vpx_highbd_dc_left_predictor_4x4 vpx_highbd_dc_left_predictor_4x4_c
879
880 void vpx_highbd_dc_left_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
881 #define vpx_highbd_dc_left_predictor_8x8 vpx_highbd_dc_left_predictor_8x8_c
882
883 void vpx_highbd_dc_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
884 #define vpx_highbd_dc_predictor_16x16 vpx_highbd_dc_predictor_16x16_c
885
886 void vpx_highbd_dc_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
887 #define vpx_highbd_dc_predictor_32x32 vpx_highbd_dc_predictor_32x32_c
888
889 void vpx_highbd_dc_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uint 16_t *above, const uint16_t *left, int bd);
890 #define vpx_highbd_dc_predictor_4x4 vpx_highbd_dc_predictor_4x4_c
891
892 void vpx_highbd_dc_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uint 16_t *above, const uint16_t *left, int bd);
893 #define vpx_highbd_dc_predictor_8x8 vpx_highbd_dc_predictor_8x8_c
894
895 void vpx_highbd_dc_top_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, cons t uint16_t *above, const uint16_t *left, int bd);
896 #define vpx_highbd_dc_top_predictor_16x16 vpx_highbd_dc_top_predictor_16x16_c
897
898 void vpx_highbd_dc_top_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, cons t uint16_t *above, const uint16_t *left, int bd);
899 #define vpx_highbd_dc_top_predictor_32x32 vpx_highbd_dc_top_predictor_32x32_c
900
901 void vpx_highbd_dc_top_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
902 #define vpx_highbd_dc_top_predictor_4x4 vpx_highbd_dc_top_predictor_4x4_c
903
904 void vpx_highbd_dc_top_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
905 #define vpx_highbd_dc_top_predictor_8x8 vpx_highbd_dc_top_predictor_8x8_c
906
907 void vpx_highbd_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride );
908 #define vpx_highbd_fdct16x16 vpx_highbd_fdct16x16_c
909
910 void vpx_highbd_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stri de);
911 #define vpx_highbd_fdct16x16_1 vpx_highbd_fdct16x16_1_c
912
913 void vpx_highbd_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride );
914 #define vpx_highbd_fdct32x32 vpx_highbd_fdct32x32_c
915
916 void vpx_highbd_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stri de);
917 #define vpx_highbd_fdct32x32_1 vpx_highbd_fdct32x32_1_c
918
919 void vpx_highbd_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int str ide);
920 #define vpx_highbd_fdct32x32_rd vpx_highbd_fdct32x32_rd_c
921
922 void vpx_highbd_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride);
923 #define vpx_highbd_fdct4x4 vpx_highbd_fdct4x4_c
924
925 void vpx_highbd_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride);
926 #define vpx_highbd_fdct8x8 vpx_highbd_fdct8x8_c
927
928 void vpx_highbd_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride );
929 #define vpx_highbd_fdct8x8_1 vpx_highbd_fdct8x8_1_c
930
931 void vpx_highbd_h_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uin t16_t *above, const uint16_t *left, int bd);
932 #define vpx_highbd_h_predictor_16x16 vpx_highbd_h_predictor_16x16_c
933
934 void vpx_highbd_h_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uin t16_t *above, const uint16_t *left, int bd);
935 #define vpx_highbd_h_predictor_32x32 vpx_highbd_h_predictor_32x32_c
936
937 void vpx_highbd_h_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uint1 6_t *above, const uint16_t *left, int bd);
938 #define vpx_highbd_h_predictor_4x4 vpx_highbd_h_predictor_4x4_c
939
940 void vpx_highbd_h_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uint1 6_t *above, const uint16_t *left, int bd);
941 #define vpx_highbd_h_predictor_8x8 vpx_highbd_h_predictor_8x8_c
942
943 void vpx_highbd_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int d est_stride, int bd);
944 #define vpx_highbd_idct16x16_10_add vpx_highbd_idct16x16_10_add_c
945
946 void vpx_highbd_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int de st_stride, int bd);
947 #define vpx_highbd_idct16x16_1_add vpx_highbd_idct16x16_1_add_c
948
949 void vpx_highbd_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int bd);
950 #define vpx_highbd_idct16x16_256_add vpx_highbd_idct16x16_256_add_c
951
952 void vpx_highbd_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int bd);
953 #define vpx_highbd_idct32x32_1024_add vpx_highbd_idct32x32_1024_add_c
954
955 void vpx_highbd_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int de st_stride, int bd);
956 #define vpx_highbd_idct32x32_1_add vpx_highbd_idct32x32_1_add_c
957
958 void vpx_highbd_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int d est_stride, int bd);
959 #define vpx_highbd_idct32x32_34_add vpx_highbd_idct32x32_34_add_c
960
961 void vpx_highbd_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int des t_stride, int bd);
962 #define vpx_highbd_idct4x4_16_add vpx_highbd_idct4x4_16_add_c
963
964 void vpx_highbd_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest _stride, int bd);
965 #define vpx_highbd_idct4x4_1_add vpx_highbd_idct4x4_1_add_c
966
967 void vpx_highbd_idct8x8_10_add_c(const tran_low_t *input, uint8_t *dest, int des t_stride, int bd);
968 #define vpx_highbd_idct8x8_10_add vpx_highbd_idct8x8_10_add_c
969
970 void vpx_highbd_idct8x8_1_add_c(const tran_low_t *input, uint8_t *dest, int dest _stride, int bd);
971 #define vpx_highbd_idct8x8_1_add vpx_highbd_idct8x8_1_add_c
972
973 void vpx_highbd_idct8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int des t_stride, int bd);
974 #define vpx_highbd_idct8x8_64_add vpx_highbd_idct8x8_64_add_c
975
976 void vpx_highbd_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int des t_stride, int bd);
977 #define vpx_highbd_iwht4x4_16_add vpx_highbd_iwht4x4_16_add_c
978
979 void vpx_highbd_iwht4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest _stride, int bd);
980 #define vpx_highbd_iwht4x4_1_add vpx_highbd_iwht4x4_1_add_c
981
982 void vpx_highbd_lpf_horizontal_4_c(uint16_t *s, int pitch, const uint8_t *blimit , const uint8_t *limit, const uint8_t *thresh, int bd);
983 #define vpx_highbd_lpf_horizontal_4 vpx_highbd_lpf_horizontal_4_c
984
985 void vpx_highbd_lpf_horizontal_4_dual_c(uint16_t *s, int pitch, const uint8_t *b limit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, c onst uint8_t *limit1, const uint8_t *thresh1, int bd);
986 #define vpx_highbd_lpf_horizontal_4_dual vpx_highbd_lpf_horizontal_4_dual_c
987
988 void vpx_highbd_lpf_horizontal_8_c(uint16_t *s, int pitch, const uint8_t *blimit , const uint8_t *limit, const uint8_t *thresh, int bd);
989 #define vpx_highbd_lpf_horizontal_8 vpx_highbd_lpf_horizontal_8_c
990
991 void vpx_highbd_lpf_horizontal_8_dual_c(uint16_t *s, int pitch, const uint8_t *b limit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, c onst uint8_t *limit1, const uint8_t *thresh1, int bd);
992 #define vpx_highbd_lpf_horizontal_8_dual vpx_highbd_lpf_horizontal_8_dual_c
993
994 void vpx_highbd_lpf_horizontal_edge_16_c(uint16_t *s, int pitch, const uint8_t * blimit, const uint8_t *limit, const uint8_t *thresh, int bd);
995 #define vpx_highbd_lpf_horizontal_edge_16 vpx_highbd_lpf_horizontal_edge_16_c
996
997 void vpx_highbd_lpf_horizontal_edge_8_c(uint16_t *s, int pitch, const uint8_t *b limit, const uint8_t *limit, const uint8_t *thresh, int bd);
998 #define vpx_highbd_lpf_horizontal_edge_8 vpx_highbd_lpf_horizontal_edge_8_c
999
1000 void vpx_highbd_lpf_vertical_16_c(uint16_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int bd);
1001 #define vpx_highbd_lpf_vertical_16 vpx_highbd_lpf_vertical_16_c
1002
1003 void vpx_highbd_lpf_vertical_16_dual_c(uint16_t *s, int pitch, const uint8_t *bl imit, const uint8_t *limit, const uint8_t *thresh, int bd);
1004 #define vpx_highbd_lpf_vertical_16_dual vpx_highbd_lpf_vertical_16_dual_c
1005
1006 void vpx_highbd_lpf_vertical_4_c(uint16_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int bd);
1007 #define vpx_highbd_lpf_vertical_4 vpx_highbd_lpf_vertical_4_c
1008
1009 void vpx_highbd_lpf_vertical_4_dual_c(uint16_t *s, int pitch, const uint8_t *bli mit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, con st uint8_t *limit1, const uint8_t *thresh1, int bd);
1010 #define vpx_highbd_lpf_vertical_4_dual vpx_highbd_lpf_vertical_4_dual_c
1011
1012 void vpx_highbd_lpf_vertical_8_c(uint16_t *s, int pitch, const uint8_t *blimit, const uint8_t *limit, const uint8_t *thresh, int bd);
1013 #define vpx_highbd_lpf_vertical_8 vpx_highbd_lpf_vertical_8_c
1014
1015 void vpx_highbd_lpf_vertical_8_dual_c(uint16_t *s, int pitch, const uint8_t *bli mit0, const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, con st uint8_t *limit1, const uint8_t *thresh1, int bd);
1016 #define vpx_highbd_lpf_vertical_8_dual vpx_highbd_lpf_vertical_8_dual_c
1017
1018 void vpx_highbd_minmax_8x8_c(const uint8_t *s, int p, const uint8_t *d, int dp, int *min, int *max);
1019 #define vpx_highbd_minmax_8x8 vpx_highbd_minmax_8x8_c
1020
1021 void vpx_highbd_quantize_b_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int16_t *q uant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low_t *dq coeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, c onst int16_t *iscan);
1022 #define vpx_highbd_quantize_b vpx_highbd_quantize_b_c
1023
1024 void vpx_highbd_quantize_b_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeff s, int skip_block, const int16_t *zbin_ptr, const int16_t *round_ptr, const int1 6_t *quant_ptr, const int16_t *quant_shift_ptr, tran_low_t *qcoeff_ptr, tran_low _t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *s can, const int16_t *iscan);
1025 #define vpx_highbd_quantize_b_32x32 vpx_highbd_quantize_b_32x32_c
1026
1027 unsigned int vpx_highbd_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1028 #define vpx_highbd_sad16x16 vpx_highbd_sad16x16_c
1029
1030 unsigned int vpx_highbd_sad16x16_avg_c(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1031 #define vpx_highbd_sad16x16_avg vpx_highbd_sad16x16_avg_c
1032
1033 void vpx_highbd_sad16x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride, uint32_t *sad_array);
1034 #define vpx_highbd_sad16x16x3 vpx_highbd_sad16x16x3_c
1035
1036 void vpx_highbd_sad16x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint 8_t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1037 #define vpx_highbd_sad16x16x4d vpx_highbd_sad16x16x4d_c
1038
1039 void vpx_highbd_sad16x16x8_c(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride, uint32_t *sad_array);
1040 #define vpx_highbd_sad16x16x8 vpx_highbd_sad16x16x8_c
1041
1042 unsigned int vpx_highbd_sad16x32_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1043 #define vpx_highbd_sad16x32 vpx_highbd_sad16x32_c
1044
1045 unsigned int vpx_highbd_sad16x32_avg_c(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1046 #define vpx_highbd_sad16x32_avg vpx_highbd_sad16x32_avg_c
1047
1048 void vpx_highbd_sad16x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint 8_t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1049 #define vpx_highbd_sad16x32x4d vpx_highbd_sad16x32x4d_c
1050
1051 unsigned int vpx_highbd_sad16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1052 #define vpx_highbd_sad16x8 vpx_highbd_sad16x8_c
1053
1054 unsigned int vpx_highbd_sad16x8_avg_c(const uint8_t *src_ptr, int src_stride, co nst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1055 #define vpx_highbd_sad16x8_avg vpx_highbd_sad16x8_avg_c
1056
1057 void vpx_highbd_sad16x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride, uint32_t *sad_array);
1058 #define vpx_highbd_sad16x8x3 vpx_highbd_sad16x8x3_c
1059
1060 void vpx_highbd_sad16x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8 _t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1061 #define vpx_highbd_sad16x8x4d vpx_highbd_sad16x8x4d_c
1062
1063 void vpx_highbd_sad16x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride, uint32_t *sad_array);
1064 #define vpx_highbd_sad16x8x8 vpx_highbd_sad16x8x8_c
1065
1066 unsigned int vpx_highbd_sad32x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1067 #define vpx_highbd_sad32x16 vpx_highbd_sad32x16_c
1068
1069 unsigned int vpx_highbd_sad32x16_avg_c(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1070 #define vpx_highbd_sad32x16_avg vpx_highbd_sad32x16_avg_c
1071
1072 void vpx_highbd_sad32x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint 8_t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1073 #define vpx_highbd_sad32x16x4d vpx_highbd_sad32x16x4d_c
1074
1075 unsigned int vpx_highbd_sad32x32_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1076 #define vpx_highbd_sad32x32 vpx_highbd_sad32x32_c
1077
1078 unsigned int vpx_highbd_sad32x32_avg_c(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1079 #define vpx_highbd_sad32x32_avg vpx_highbd_sad32x32_avg_c
1080
1081 void vpx_highbd_sad32x32x3_c(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride, uint32_t *sad_array);
1082 #define vpx_highbd_sad32x32x3 vpx_highbd_sad32x32x3_c
1083
1084 void vpx_highbd_sad32x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint 8_t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1085 #define vpx_highbd_sad32x32x4d vpx_highbd_sad32x32x4d_c
1086
1087 void vpx_highbd_sad32x32x8_c(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride, uint32_t *sad_array);
1088 #define vpx_highbd_sad32x32x8 vpx_highbd_sad32x32x8_c
1089
1090 unsigned int vpx_highbd_sad32x64_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1091 #define vpx_highbd_sad32x64 vpx_highbd_sad32x64_c
1092
1093 unsigned int vpx_highbd_sad32x64_avg_c(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1094 #define vpx_highbd_sad32x64_avg vpx_highbd_sad32x64_avg_c
1095
1096 void vpx_highbd_sad32x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint 8_t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1097 #define vpx_highbd_sad32x64x4d vpx_highbd_sad32x64x4d_c
1098
1099 unsigned int vpx_highbd_sad4x4_c(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride);
1100 #define vpx_highbd_sad4x4 vpx_highbd_sad4x4_c
1101
1102 unsigned int vpx_highbd_sad4x4_avg_c(const uint8_t *src_ptr, int src_stride, con st uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1103 #define vpx_highbd_sad4x4_avg vpx_highbd_sad4x4_avg_c
1104
1105 void vpx_highbd_sad4x4x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
1106 #define vpx_highbd_sad4x4x3 vpx_highbd_sad4x4x3_c
1107
1108 void vpx_highbd_sad4x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_ t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1109 #define vpx_highbd_sad4x4x4d vpx_highbd_sad4x4x4d_c
1110
1111 void vpx_highbd_sad4x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
1112 #define vpx_highbd_sad4x4x8 vpx_highbd_sad4x4x8_c
1113
1114 unsigned int vpx_highbd_sad4x8_c(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride);
1115 #define vpx_highbd_sad4x8 vpx_highbd_sad4x8_c
1116
1117 unsigned int vpx_highbd_sad4x8_avg_c(const uint8_t *src_ptr, int src_stride, con st uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1118 #define vpx_highbd_sad4x8_avg vpx_highbd_sad4x8_avg_c
1119
1120 void vpx_highbd_sad4x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_ t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1121 #define vpx_highbd_sad4x8x4d vpx_highbd_sad4x8x4d_c
1122
1123 void vpx_highbd_sad4x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
1124 #define vpx_highbd_sad4x8x8 vpx_highbd_sad4x8x8_c
1125
1126 unsigned int vpx_highbd_sad64x32_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1127 #define vpx_highbd_sad64x32 vpx_highbd_sad64x32_c
1128
1129 unsigned int vpx_highbd_sad64x32_avg_c(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1130 #define vpx_highbd_sad64x32_avg vpx_highbd_sad64x32_avg_c
1131
1132 void vpx_highbd_sad64x32x4d_c(const uint8_t *src_ptr, int src_stride, const uint 8_t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1133 #define vpx_highbd_sad64x32x4d vpx_highbd_sad64x32x4d_c
1134
1135 unsigned int vpx_highbd_sad64x64_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1136 #define vpx_highbd_sad64x64 vpx_highbd_sad64x64_c
1137
1138 unsigned int vpx_highbd_sad64x64_avg_c(const uint8_t *src_ptr, int src_stride, c onst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1139 #define vpx_highbd_sad64x64_avg vpx_highbd_sad64x64_avg_c
1140
1141 void vpx_highbd_sad64x64x3_c(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride, uint32_t *sad_array);
1142 #define vpx_highbd_sad64x64x3 vpx_highbd_sad64x64x3_c
1143
1144 void vpx_highbd_sad64x64x4d_c(const uint8_t *src_ptr, int src_stride, const uint 8_t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1145 #define vpx_highbd_sad64x64x4d vpx_highbd_sad64x64x4d_c
1146
1147 void vpx_highbd_sad64x64x8_c(const uint8_t *src_ptr, int src_stride, const uint8 _t *ref_ptr, int ref_stride, uint32_t *sad_array);
1148 #define vpx_highbd_sad64x64x8 vpx_highbd_sad64x64x8_c
1149
1150 unsigned int vpx_highbd_sad8x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1151 #define vpx_highbd_sad8x16 vpx_highbd_sad8x16_c
1152
1153 unsigned int vpx_highbd_sad8x16_avg_c(const uint8_t *src_ptr, int src_stride, co nst uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1154 #define vpx_highbd_sad8x16_avg vpx_highbd_sad8x16_avg_c
1155
1156 void vpx_highbd_sad8x16x3_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride, uint32_t *sad_array);
1157 #define vpx_highbd_sad8x16x3 vpx_highbd_sad8x16x3_c
1158
1159 void vpx_highbd_sad8x16x4d_c(const uint8_t *src_ptr, int src_stride, const uint8 _t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1160 #define vpx_highbd_sad8x16x4d vpx_highbd_sad8x16x4d_c
1161
1162 void vpx_highbd_sad8x16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_ t *ref_ptr, int ref_stride, uint32_t *sad_array);
1163 #define vpx_highbd_sad8x16x8 vpx_highbd_sad8x16x8_c
1164
1165 unsigned int vpx_highbd_sad8x4_c(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride);
1166 #define vpx_highbd_sad8x4 vpx_highbd_sad8x4_c
1167
1168 unsigned int vpx_highbd_sad8x4_avg_c(const uint8_t *src_ptr, int src_stride, con st uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1169 #define vpx_highbd_sad8x4_avg vpx_highbd_sad8x4_avg_c
1170
1171 void vpx_highbd_sad8x4x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_ t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1172 #define vpx_highbd_sad8x4x4d vpx_highbd_sad8x4x4d_c
1173
1174 void vpx_highbd_sad8x4x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
1175 #define vpx_highbd_sad8x4x8 vpx_highbd_sad8x4x8_c
1176
1177 unsigned int vpx_highbd_sad8x8_c(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride);
1178 #define vpx_highbd_sad8x8 vpx_highbd_sad8x8_c
1179
1180 unsigned int vpx_highbd_sad8x8_avg_c(const uint8_t *src_ptr, int src_stride, con st uint8_t *ref_ptr, int ref_stride, const uint8_t *second_pred);
1181 #define vpx_highbd_sad8x8_avg vpx_highbd_sad8x8_avg_c
1182
1183 void vpx_highbd_sad8x8x3_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
1184 #define vpx_highbd_sad8x8x3 vpx_highbd_sad8x8x3_c
1185
1186 void vpx_highbd_sad8x8x4d_c(const uint8_t *src_ptr, int src_stride, const uint8_ t* const ref_ptr[], int ref_stride, uint32_t *sad_array);
1187 #define vpx_highbd_sad8x8x4d vpx_highbd_sad8x8x4d_c
1188
1189 void vpx_highbd_sad8x8x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride, uint32_t *sad_array);
1190 #define vpx_highbd_sad8x8x8 vpx_highbd_sad8x8x8_c
1191
1192 void vpx_highbd_subtract_block_c(int rows, int cols, int16_t *diff_ptr, ptrdiff_ t diff_stride, const uint8_t *src_ptr, ptrdiff_t src_stride, const uint8_t *pred _ptr, ptrdiff_t pred_stride, int bd);
1193 #define vpx_highbd_subtract_block vpx_highbd_subtract_block_c
1194
1195 void vpx_highbd_tm_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
1196 #define vpx_highbd_tm_predictor_16x16 vpx_highbd_tm_predictor_16x16_c
1197
1198 void vpx_highbd_tm_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const ui nt16_t *above, const uint16_t *left, int bd);
1199 #define vpx_highbd_tm_predictor_32x32 vpx_highbd_tm_predictor_32x32_c
1200
1201 void vpx_highbd_tm_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uint 16_t *above, const uint16_t *left, int bd);
1202 #define vpx_highbd_tm_predictor_4x4 vpx_highbd_tm_predictor_4x4_c
1203
1204 void vpx_highbd_tm_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uint 16_t *above, const uint16_t *left, int bd);
1205 #define vpx_highbd_tm_predictor_8x8 vpx_highbd_tm_predictor_8x8_c
1206
1207 void vpx_highbd_v_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uin t16_t *above, const uint16_t *left, int bd);
1208 #define vpx_highbd_v_predictor_16x16 vpx_highbd_v_predictor_16x16_c
1209
1210 void vpx_highbd_v_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uin t16_t *above, const uint16_t *left, int bd);
1211 #define vpx_highbd_v_predictor_32x32 vpx_highbd_v_predictor_32x32_c
1212
1213 void vpx_highbd_v_predictor_4x4_c(uint16_t *dst, ptrdiff_t y_stride, const uint1 6_t *above, const uint16_t *left, int bd);
1214 #define vpx_highbd_v_predictor_4x4 vpx_highbd_v_predictor_4x4_c
1215
1216 void vpx_highbd_v_predictor_8x8_c(uint16_t *dst, ptrdiff_t y_stride, const uint1 6_t *above, const uint16_t *left, int bd);
1217 #define vpx_highbd_v_predictor_8x8 vpx_highbd_v_predictor_8x8_c
1218
315 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide); 1219 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
316 void vpx_idct16x16_10_add_neon(const tran_low_t *input, uint8_t *dest, int dest_ stride); 1220 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_c
317 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_neon
318 1221
319 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de); 1222 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
320 void vpx_idct16x16_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s tride); 1223 #define vpx_idct16x16_1_add vpx_idct16x16_1_add_c
321 #define vpx_idct16x16_1_add vpx_idct16x16_1_add_neon
322 1224
323 void vpx_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride); 1225 void vpx_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
324 void vpx_idct16x16_256_add_neon(const tran_low_t *input, uint8_t *dest, int dest _stride); 1226 #define vpx_idct16x16_256_add vpx_idct16x16_256_add_c
325 #define vpx_idct16x16_256_add vpx_idct16x16_256_add_neon
326 1227
327 void vpx_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_s tride); 1228 void vpx_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_s tride);
328 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride); 1229 #define vpx_idct32x32_1024_add vpx_idct32x32_1024_add_c
329 #define vpx_idct32x32_1024_add vpx_idct32x32_1024_add_neon
330 1230
331 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride); 1231 void vpx_idct32x32_135_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
332 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride); 1232 #define vpx_idct32x32_135_add vpx_idct32x32_135_add_c
333 #define vpx_idct32x32_135_add vpx_idct32x32_1024_add_neon
334 1233
335 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de); 1234 void vpx_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
336 void vpx_idct32x32_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_s tride); 1235 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_c
337 #define vpx_idct32x32_1_add vpx_idct32x32_1_add_neon
338 1236
339 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide); 1237 void vpx_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
340 void vpx_idct32x32_1024_add_neon(const tran_low_t *input, uint8_t *dest, int des t_stride); 1238 #define vpx_idct32x32_34_add vpx_idct32x32_34_add_c
341 #define vpx_idct32x32_34_add vpx_idct32x32_1024_add_neon
342 1239
343 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e); 1240 void vpx_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
344 void vpx_idct4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_st ride); 1241 #define vpx_idct4x4_16_add vpx_idct4x4_16_add_c
345 #define vpx_idct4x4_16_add vpx_idct4x4_16_add_neon
346 1242
347 void vpx_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride ); 1243 void vpx_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
348 void vpx_idct4x4_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_str ide); 1244 #define vpx_idct4x4_1_add vpx_idct4x4_1_add_c
349 #define vpx_idct4x4_1_add vpx_idct4x4_1_add_neon
350 1245
351 void vpx_idct8x8_12_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e); 1246 void vpx_idct8x8_12_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
352 void vpx_idct8x8_12_add_neon(const tran_low_t *input, uint8_t *dest, int dest_st ride); 1247 #define vpx_idct8x8_12_add vpx_idct8x8_12_add_c
353 #define vpx_idct8x8_12_add vpx_idct8x8_12_add_neon
354 1248
355 void vpx_idct8x8_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride ); 1249 void vpx_idct8x8_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride );
356 void vpx_idct8x8_1_add_neon(const tran_low_t *input, uint8_t *dest, int dest_str ide); 1250 #define vpx_idct8x8_1_add vpx_idct8x8_1_add_c
357 #define vpx_idct8x8_1_add vpx_idct8x8_1_add_neon
358 1251
359 void vpx_idct8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e); 1252 void vpx_idct8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
360 void vpx_idct8x8_64_add_neon(const tran_low_t *input, uint8_t *dest, int dest_st ride); 1253 #define vpx_idct8x8_64_add vpx_idct8x8_64_add_c
361 #define vpx_idct8x8_64_add vpx_idct8x8_64_add_neon
362 1254
363 int16_t vpx_int_pro_col_c(const uint8_t *ref, const int width); 1255 int16_t vpx_int_pro_col_c(const uint8_t *ref, const int width);
364 int16_t vpx_int_pro_col_neon(const uint8_t *ref, const int width); 1256 int16_t vpx_int_pro_col_neon(const uint8_t *ref, const int width);
365 #define vpx_int_pro_col vpx_int_pro_col_neon 1257 #define vpx_int_pro_col vpx_int_pro_col_neon
366 1258
367 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height); 1259 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
368 void vpx_int_pro_row_neon(int16_t *hbuf, const uint8_t *ref, const int ref_strid e, const int height); 1260 void vpx_int_pro_row_neon(int16_t *hbuf, const uint8_t *ref, const int ref_strid e, const int height);
369 #define vpx_int_pro_row vpx_int_pro_row_neon 1261 #define vpx_int_pro_row vpx_int_pro_row_neon
370 1262
371 void vpx_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e); 1263 void vpx_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_strid e);
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 (void)flags; 1734 (void)flags;
843 1735
844 } 1736 }
845 #endif 1737 #endif
846 1738
847 #ifdef __cplusplus 1739 #ifdef __cplusplus
848 } // extern "C" 1740 } // extern "C"
849 #endif 1741 #endif
850 1742
851 #endif 1743 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698