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

Side by Side Diff: third_party/libvpx/source/config/linux/arm/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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 264
265 void vpx_hadamard_16x16_c(const int16_t *src_diff, int src_stride, int16_t *coef f); 265 void vpx_hadamard_16x16_c(const int16_t *src_diff, int src_stride, int16_t *coef f);
266 #define vpx_hadamard_16x16 vpx_hadamard_16x16_c 266 #define vpx_hadamard_16x16 vpx_hadamard_16x16_c
267 267
268 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff) ; 268 void vpx_hadamard_8x8_c(const int16_t *src_diff, int src_stride, int16_t *coeff) ;
269 #define vpx_hadamard_8x8 vpx_hadamard_8x8_c 269 #define vpx_hadamard_8x8 vpx_hadamard_8x8_c
270 270
271 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left); 271 void vpx_he_predictor_4x4_c(uint8_t *dst, ptrdiff_t y_stride, const uint8_t *abo ve, const uint8_t *left);
272 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c 272 #define vpx_he_predictor_4x4 vpx_he_predictor_4x4_c
273 273
274 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);
275 #define vpx_highbd_10_get16x16var vpx_highbd_10_get16x16var_c
276
277 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);
278 #define vpx_highbd_10_get8x8var vpx_highbd_10_get8x8var_c
279
280 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);
281 #define vpx_highbd_10_mse16x16 vpx_highbd_10_mse16x16_c
282
283 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);
284 #define vpx_highbd_10_mse16x8 vpx_highbd_10_mse16x8_c
285
286 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);
287 #define vpx_highbd_10_mse8x16 vpx_highbd_10_mse8x16_c
288
289 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);
290 #define vpx_highbd_10_mse8x8 vpx_highbd_10_mse8x8_c
291
292 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);
293 #define vpx_highbd_10_sub_pixel_avg_variance16x16 vpx_highbd_10_sub_pixel_avg_va riance16x16_c
294
295 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);
296 #define vpx_highbd_10_sub_pixel_avg_variance16x32 vpx_highbd_10_sub_pixel_avg_va riance16x32_c
297
298 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);
299 #define vpx_highbd_10_sub_pixel_avg_variance16x8 vpx_highbd_10_sub_pixel_avg_var iance16x8_c
300
301 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);
302 #define vpx_highbd_10_sub_pixel_avg_variance32x16 vpx_highbd_10_sub_pixel_avg_va riance32x16_c
303
304 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);
305 #define vpx_highbd_10_sub_pixel_avg_variance32x32 vpx_highbd_10_sub_pixel_avg_va riance32x32_c
306
307 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);
308 #define vpx_highbd_10_sub_pixel_avg_variance32x64 vpx_highbd_10_sub_pixel_avg_va riance32x64_c
309
310 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);
311 #define vpx_highbd_10_sub_pixel_avg_variance4x4 vpx_highbd_10_sub_pixel_avg_vari ance4x4_c
312
313 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);
314 #define vpx_highbd_10_sub_pixel_avg_variance4x8 vpx_highbd_10_sub_pixel_avg_vari ance4x8_c
315
316 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);
317 #define vpx_highbd_10_sub_pixel_avg_variance64x32 vpx_highbd_10_sub_pixel_avg_va riance64x32_c
318
319 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);
320 #define vpx_highbd_10_sub_pixel_avg_variance64x64 vpx_highbd_10_sub_pixel_avg_va riance64x64_c
321
322 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);
323 #define vpx_highbd_10_sub_pixel_avg_variance8x16 vpx_highbd_10_sub_pixel_avg_var iance8x16_c
324
325 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);
326 #define vpx_highbd_10_sub_pixel_avg_variance8x4 vpx_highbd_10_sub_pixel_avg_vari ance8x4_c
327
328 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);
329 #define vpx_highbd_10_sub_pixel_avg_variance8x8 vpx_highbd_10_sub_pixel_avg_vari ance8x8_c
330
331 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);
332 #define vpx_highbd_10_sub_pixel_variance16x16 vpx_highbd_10_sub_pixel_variance16 x16_c
333
334 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);
335 #define vpx_highbd_10_sub_pixel_variance16x32 vpx_highbd_10_sub_pixel_variance16 x32_c
336
337 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);
338 #define vpx_highbd_10_sub_pixel_variance16x8 vpx_highbd_10_sub_pixel_variance16x 8_c
339
340 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);
341 #define vpx_highbd_10_sub_pixel_variance32x16 vpx_highbd_10_sub_pixel_variance32 x16_c
342
343 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);
344 #define vpx_highbd_10_sub_pixel_variance32x32 vpx_highbd_10_sub_pixel_variance32 x32_c
345
346 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);
347 #define vpx_highbd_10_sub_pixel_variance32x64 vpx_highbd_10_sub_pixel_variance32 x64_c
348
349 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);
350 #define vpx_highbd_10_sub_pixel_variance4x4 vpx_highbd_10_sub_pixel_variance4x4_ c
351
352 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);
353 #define vpx_highbd_10_sub_pixel_variance4x8 vpx_highbd_10_sub_pixel_variance4x8_ c
354
355 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);
356 #define vpx_highbd_10_sub_pixel_variance64x32 vpx_highbd_10_sub_pixel_variance64 x32_c
357
358 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);
359 #define vpx_highbd_10_sub_pixel_variance64x64 vpx_highbd_10_sub_pixel_variance64 x64_c
360
361 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);
362 #define vpx_highbd_10_sub_pixel_variance8x16 vpx_highbd_10_sub_pixel_variance8x1 6_c
363
364 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);
365 #define vpx_highbd_10_sub_pixel_variance8x4 vpx_highbd_10_sub_pixel_variance8x4_ c
366
367 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);
368 #define vpx_highbd_10_sub_pixel_variance8x8 vpx_highbd_10_sub_pixel_variance8x8_ c
369
370 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);
371 #define vpx_highbd_10_variance16x16 vpx_highbd_10_variance16x16_c
372
373 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);
374 #define vpx_highbd_10_variance16x32 vpx_highbd_10_variance16x32_c
375
376 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);
377 #define vpx_highbd_10_variance16x8 vpx_highbd_10_variance16x8_c
378
379 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);
380 #define vpx_highbd_10_variance32x16 vpx_highbd_10_variance32x16_c
381
382 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);
383 #define vpx_highbd_10_variance32x32 vpx_highbd_10_variance32x32_c
384
385 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);
386 #define vpx_highbd_10_variance32x64 vpx_highbd_10_variance32x64_c
387
388 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);
389 #define vpx_highbd_10_variance4x4 vpx_highbd_10_variance4x4_c
390
391 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);
392 #define vpx_highbd_10_variance4x8 vpx_highbd_10_variance4x8_c
393
394 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);
395 #define vpx_highbd_10_variance64x32 vpx_highbd_10_variance64x32_c
396
397 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);
398 #define vpx_highbd_10_variance64x64 vpx_highbd_10_variance64x64_c
399
400 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);
401 #define vpx_highbd_10_variance8x16 vpx_highbd_10_variance8x16_c
402
403 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);
404 #define vpx_highbd_10_variance8x4 vpx_highbd_10_variance8x4_c
405
406 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);
407 #define vpx_highbd_10_variance8x8 vpx_highbd_10_variance8x8_c
408
409 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);
410 #define vpx_highbd_12_get16x16var vpx_highbd_12_get16x16var_c
411
412 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);
413 #define vpx_highbd_12_get8x8var vpx_highbd_12_get8x8var_c
414
415 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);
416 #define vpx_highbd_12_mse16x16 vpx_highbd_12_mse16x16_c
417
418 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);
419 #define vpx_highbd_12_mse16x8 vpx_highbd_12_mse16x8_c
420
421 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);
422 #define vpx_highbd_12_mse8x16 vpx_highbd_12_mse8x16_c
423
424 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);
425 #define vpx_highbd_12_mse8x8 vpx_highbd_12_mse8x8_c
426
427 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);
428 #define vpx_highbd_12_sub_pixel_avg_variance16x16 vpx_highbd_12_sub_pixel_avg_va riance16x16_c
429
430 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);
431 #define vpx_highbd_12_sub_pixel_avg_variance16x32 vpx_highbd_12_sub_pixel_avg_va riance16x32_c
432
433 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);
434 #define vpx_highbd_12_sub_pixel_avg_variance16x8 vpx_highbd_12_sub_pixel_avg_var iance16x8_c
435
436 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);
437 #define vpx_highbd_12_sub_pixel_avg_variance32x16 vpx_highbd_12_sub_pixel_avg_va riance32x16_c
438
439 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);
440 #define vpx_highbd_12_sub_pixel_avg_variance32x32 vpx_highbd_12_sub_pixel_avg_va riance32x32_c
441
442 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);
443 #define vpx_highbd_12_sub_pixel_avg_variance32x64 vpx_highbd_12_sub_pixel_avg_va riance32x64_c
444
445 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);
446 #define vpx_highbd_12_sub_pixel_avg_variance4x4 vpx_highbd_12_sub_pixel_avg_vari ance4x4_c
447
448 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);
449 #define vpx_highbd_12_sub_pixel_avg_variance4x8 vpx_highbd_12_sub_pixel_avg_vari ance4x8_c
450
451 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);
452 #define vpx_highbd_12_sub_pixel_avg_variance64x32 vpx_highbd_12_sub_pixel_avg_va riance64x32_c
453
454 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);
455 #define vpx_highbd_12_sub_pixel_avg_variance64x64 vpx_highbd_12_sub_pixel_avg_va riance64x64_c
456
457 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);
458 #define vpx_highbd_12_sub_pixel_avg_variance8x16 vpx_highbd_12_sub_pixel_avg_var iance8x16_c
459
460 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);
461 #define vpx_highbd_12_sub_pixel_avg_variance8x4 vpx_highbd_12_sub_pixel_avg_vari ance8x4_c
462
463 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);
464 #define vpx_highbd_12_sub_pixel_avg_variance8x8 vpx_highbd_12_sub_pixel_avg_vari ance8x8_c
465
466 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);
467 #define vpx_highbd_12_sub_pixel_variance16x16 vpx_highbd_12_sub_pixel_variance16 x16_c
468
469 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);
470 #define vpx_highbd_12_sub_pixel_variance16x32 vpx_highbd_12_sub_pixel_variance16 x32_c
471
472 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);
473 #define vpx_highbd_12_sub_pixel_variance16x8 vpx_highbd_12_sub_pixel_variance16x 8_c
474
475 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);
476 #define vpx_highbd_12_sub_pixel_variance32x16 vpx_highbd_12_sub_pixel_variance32 x16_c
477
478 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);
479 #define vpx_highbd_12_sub_pixel_variance32x32 vpx_highbd_12_sub_pixel_variance32 x32_c
480
481 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);
482 #define vpx_highbd_12_sub_pixel_variance32x64 vpx_highbd_12_sub_pixel_variance32 x64_c
483
484 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);
485 #define vpx_highbd_12_sub_pixel_variance4x4 vpx_highbd_12_sub_pixel_variance4x4_ c
486
487 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);
488 #define vpx_highbd_12_sub_pixel_variance4x8 vpx_highbd_12_sub_pixel_variance4x8_ c
489
490 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);
491 #define vpx_highbd_12_sub_pixel_variance64x32 vpx_highbd_12_sub_pixel_variance64 x32_c
492
493 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);
494 #define vpx_highbd_12_sub_pixel_variance64x64 vpx_highbd_12_sub_pixel_variance64 x64_c
495
496 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);
497 #define vpx_highbd_12_sub_pixel_variance8x16 vpx_highbd_12_sub_pixel_variance8x1 6_c
498
499 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);
500 #define vpx_highbd_12_sub_pixel_variance8x4 vpx_highbd_12_sub_pixel_variance8x4_ c
501
502 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);
503 #define vpx_highbd_12_sub_pixel_variance8x8 vpx_highbd_12_sub_pixel_variance8x8_ c
504
505 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);
506 #define vpx_highbd_12_variance16x16 vpx_highbd_12_variance16x16_c
507
508 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);
509 #define vpx_highbd_12_variance16x32 vpx_highbd_12_variance16x32_c
510
511 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);
512 #define vpx_highbd_12_variance16x8 vpx_highbd_12_variance16x8_c
513
514 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);
515 #define vpx_highbd_12_variance32x16 vpx_highbd_12_variance32x16_c
516
517 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);
518 #define vpx_highbd_12_variance32x32 vpx_highbd_12_variance32x32_c
519
520 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);
521 #define vpx_highbd_12_variance32x64 vpx_highbd_12_variance32x64_c
522
523 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);
524 #define vpx_highbd_12_variance4x4 vpx_highbd_12_variance4x4_c
525
526 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);
527 #define vpx_highbd_12_variance4x8 vpx_highbd_12_variance4x8_c
528
529 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);
530 #define vpx_highbd_12_variance64x32 vpx_highbd_12_variance64x32_c
531
532 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);
533 #define vpx_highbd_12_variance64x64 vpx_highbd_12_variance64x64_c
534
535 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);
536 #define vpx_highbd_12_variance8x16 vpx_highbd_12_variance8x16_c
537
538 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);
539 #define vpx_highbd_12_variance8x4 vpx_highbd_12_variance8x4_c
540
541 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);
542 #define vpx_highbd_12_variance8x8 vpx_highbd_12_variance8x8_c
543
544 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);
545 #define vpx_highbd_8_get16x16var vpx_highbd_8_get16x16var_c
546
547 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);
548 #define vpx_highbd_8_get8x8var vpx_highbd_8_get8x8var_c
549
550 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);
551 #define vpx_highbd_8_mse16x16 vpx_highbd_8_mse16x16_c
552
553 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);
554 #define vpx_highbd_8_mse16x8 vpx_highbd_8_mse16x8_c
555
556 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);
557 #define vpx_highbd_8_mse8x16 vpx_highbd_8_mse8x16_c
558
559 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);
560 #define vpx_highbd_8_mse8x8 vpx_highbd_8_mse8x8_c
561
562 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);
563 #define vpx_highbd_8_sub_pixel_avg_variance16x16 vpx_highbd_8_sub_pixel_avg_vari ance16x16_c
564
565 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);
566 #define vpx_highbd_8_sub_pixel_avg_variance16x32 vpx_highbd_8_sub_pixel_avg_vari ance16x32_c
567
568 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);
569 #define vpx_highbd_8_sub_pixel_avg_variance16x8 vpx_highbd_8_sub_pixel_avg_varia nce16x8_c
570
571 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);
572 #define vpx_highbd_8_sub_pixel_avg_variance32x16 vpx_highbd_8_sub_pixel_avg_vari ance32x16_c
573
574 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);
575 #define vpx_highbd_8_sub_pixel_avg_variance32x32 vpx_highbd_8_sub_pixel_avg_vari ance32x32_c
576
577 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);
578 #define vpx_highbd_8_sub_pixel_avg_variance32x64 vpx_highbd_8_sub_pixel_avg_vari ance32x64_c
579
580 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);
581 #define vpx_highbd_8_sub_pixel_avg_variance4x4 vpx_highbd_8_sub_pixel_avg_varian ce4x4_c
582
583 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);
584 #define vpx_highbd_8_sub_pixel_avg_variance4x8 vpx_highbd_8_sub_pixel_avg_varian ce4x8_c
585
586 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);
587 #define vpx_highbd_8_sub_pixel_avg_variance64x32 vpx_highbd_8_sub_pixel_avg_vari ance64x32_c
588
589 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);
590 #define vpx_highbd_8_sub_pixel_avg_variance64x64 vpx_highbd_8_sub_pixel_avg_vari ance64x64_c
591
592 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);
593 #define vpx_highbd_8_sub_pixel_avg_variance8x16 vpx_highbd_8_sub_pixel_avg_varia nce8x16_c
594
595 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);
596 #define vpx_highbd_8_sub_pixel_avg_variance8x4 vpx_highbd_8_sub_pixel_avg_varian ce8x4_c
597
598 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);
599 #define vpx_highbd_8_sub_pixel_avg_variance8x8 vpx_highbd_8_sub_pixel_avg_varian ce8x8_c
600
601 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);
602 #define vpx_highbd_8_sub_pixel_variance16x16 vpx_highbd_8_sub_pixel_variance16x1 6_c
603
604 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);
605 #define vpx_highbd_8_sub_pixel_variance16x32 vpx_highbd_8_sub_pixel_variance16x3 2_c
606
607 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);
608 #define vpx_highbd_8_sub_pixel_variance16x8 vpx_highbd_8_sub_pixel_variance16x8_ c
609
610 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);
611 #define vpx_highbd_8_sub_pixel_variance32x16 vpx_highbd_8_sub_pixel_variance32x1 6_c
612
613 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);
614 #define vpx_highbd_8_sub_pixel_variance32x32 vpx_highbd_8_sub_pixel_variance32x3 2_c
615
616 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);
617 #define vpx_highbd_8_sub_pixel_variance32x64 vpx_highbd_8_sub_pixel_variance32x6 4_c
618
619 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);
620 #define vpx_highbd_8_sub_pixel_variance4x4 vpx_highbd_8_sub_pixel_variance4x4_c
621
622 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);
623 #define vpx_highbd_8_sub_pixel_variance4x8 vpx_highbd_8_sub_pixel_variance4x8_c
624
625 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);
626 #define vpx_highbd_8_sub_pixel_variance64x32 vpx_highbd_8_sub_pixel_variance64x3 2_c
627
628 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);
629 #define vpx_highbd_8_sub_pixel_variance64x64 vpx_highbd_8_sub_pixel_variance64x6 4_c
630
631 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);
632 #define vpx_highbd_8_sub_pixel_variance8x16 vpx_highbd_8_sub_pixel_variance8x16_ c
633
634 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);
635 #define vpx_highbd_8_sub_pixel_variance8x4 vpx_highbd_8_sub_pixel_variance8x4_c
636
637 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);
638 #define vpx_highbd_8_sub_pixel_variance8x8 vpx_highbd_8_sub_pixel_variance8x8_c
639
640 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);
641 #define vpx_highbd_8_variance16x16 vpx_highbd_8_variance16x16_c
642
643 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);
644 #define vpx_highbd_8_variance16x32 vpx_highbd_8_variance16x32_c
645
646 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);
647 #define vpx_highbd_8_variance16x8 vpx_highbd_8_variance16x8_c
648
649 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);
650 #define vpx_highbd_8_variance32x16 vpx_highbd_8_variance32x16_c
651
652 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);
653 #define vpx_highbd_8_variance32x32 vpx_highbd_8_variance32x32_c
654
655 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);
656 #define vpx_highbd_8_variance32x64 vpx_highbd_8_variance32x64_c
657
658 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);
659 #define vpx_highbd_8_variance4x4 vpx_highbd_8_variance4x4_c
660
661 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);
662 #define vpx_highbd_8_variance4x8 vpx_highbd_8_variance4x8_c
663
664 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);
665 #define vpx_highbd_8_variance64x32 vpx_highbd_8_variance64x32_c
666
667 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);
668 #define vpx_highbd_8_variance64x64 vpx_highbd_8_variance64x64_c
669
670 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);
671 #define vpx_highbd_8_variance8x16 vpx_highbd_8_variance8x16_c
672
673 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);
674 #define vpx_highbd_8_variance8x4 vpx_highbd_8_variance8x4_c
675
676 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);
677 #define vpx_highbd_8_variance8x8 vpx_highbd_8_variance8x8_c
678
679 unsigned int vpx_highbd_avg_4x4_c(const uint8_t *, int p);
680 #define vpx_highbd_avg_4x4 vpx_highbd_avg_4x4_c
681
682 unsigned int vpx_highbd_avg_8x8_c(const uint8_t *, int p);
683 #define vpx_highbd_avg_8x8 vpx_highbd_avg_8x8_c
684
685 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);
686 #define vpx_highbd_comp_avg_pred vpx_highbd_comp_avg_pred_c
687
688 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);
689 #define vpx_highbd_convolve8 vpx_highbd_convolve8_c
690
691 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);
692 #define vpx_highbd_convolve8_avg vpx_highbd_convolve8_avg_c
693
694 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);
695 #define vpx_highbd_convolve8_avg_horiz vpx_highbd_convolve8_avg_horiz_c
696
697 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);
698 #define vpx_highbd_convolve8_avg_vert vpx_highbd_convolve8_avg_vert_c
699
700 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);
701 #define vpx_highbd_convolve8_horiz vpx_highbd_convolve8_horiz_c
702
703 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);
704 #define vpx_highbd_convolve8_vert vpx_highbd_convolve8_vert_c
705
706 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);
707 #define vpx_highbd_convolve_avg vpx_highbd_convolve_avg_c
708
709 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);
710 #define vpx_highbd_convolve_copy vpx_highbd_convolve_copy_c
711
712 void vpx_highbd_d117_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
713 #define vpx_highbd_d117_predictor_16x16 vpx_highbd_d117_predictor_16x16_c
714
715 void vpx_highbd_d117_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
716 #define vpx_highbd_d117_predictor_32x32 vpx_highbd_d117_predictor_32x32_c
717
718 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);
719 #define vpx_highbd_d117_predictor_4x4 vpx_highbd_d117_predictor_4x4_c
720
721 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);
722 #define vpx_highbd_d117_predictor_8x8 vpx_highbd_d117_predictor_8x8_c
723
724 void vpx_highbd_d135_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
725 #define vpx_highbd_d135_predictor_16x16 vpx_highbd_d135_predictor_16x16_c
726
727 void vpx_highbd_d135_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
728 #define vpx_highbd_d135_predictor_32x32 vpx_highbd_d135_predictor_32x32_c
729
730 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);
731 #define vpx_highbd_d135_predictor_4x4 vpx_highbd_d135_predictor_4x4_c
732
733 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);
734 #define vpx_highbd_d135_predictor_8x8 vpx_highbd_d135_predictor_8x8_c
735
736 void vpx_highbd_d153_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
737 #define vpx_highbd_d153_predictor_16x16 vpx_highbd_d153_predictor_16x16_c
738
739 void vpx_highbd_d153_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
740 #define vpx_highbd_d153_predictor_32x32 vpx_highbd_d153_predictor_32x32_c
741
742 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);
743 #define vpx_highbd_d153_predictor_4x4 vpx_highbd_d153_predictor_4x4_c
744
745 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);
746 #define vpx_highbd_d153_predictor_8x8 vpx_highbd_d153_predictor_8x8_c
747
748 void vpx_highbd_d207_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
749 #define vpx_highbd_d207_predictor_16x16 vpx_highbd_d207_predictor_16x16_c
750
751 void vpx_highbd_d207_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
752 #define vpx_highbd_d207_predictor_32x32 vpx_highbd_d207_predictor_32x32_c
753
754 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);
755 #define vpx_highbd_d207_predictor_4x4 vpx_highbd_d207_predictor_4x4_c
756
757 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);
758 #define vpx_highbd_d207_predictor_8x8 vpx_highbd_d207_predictor_8x8_c
759
760 void vpx_highbd_d207e_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
761 #define vpx_highbd_d207e_predictor_16x16 vpx_highbd_d207e_predictor_16x16_c
762
763 void vpx_highbd_d207e_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
764 #define vpx_highbd_d207e_predictor_32x32 vpx_highbd_d207e_predictor_32x32_c
765
766 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);
767 #define vpx_highbd_d207e_predictor_4x4 vpx_highbd_d207e_predictor_4x4_c
768
769 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);
770 #define vpx_highbd_d207e_predictor_8x8 vpx_highbd_d207e_predictor_8x8_c
771
772 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);
773 #define vpx_highbd_d45_predictor_16x16 vpx_highbd_d45_predictor_16x16_c
774
775 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);
776 #define vpx_highbd_d45_predictor_32x32 vpx_highbd_d45_predictor_32x32_c
777
778 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);
779 #define vpx_highbd_d45_predictor_4x4 vpx_highbd_d45_predictor_4x4_c
780
781 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);
782 #define vpx_highbd_d45_predictor_8x8 vpx_highbd_d45_predictor_8x8_c
783
784 void vpx_highbd_d45e_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
785 #define vpx_highbd_d45e_predictor_16x16 vpx_highbd_d45e_predictor_16x16_c
786
787 void vpx_highbd_d45e_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
788 #define vpx_highbd_d45e_predictor_32x32 vpx_highbd_d45e_predictor_32x32_c
789
790 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);
791 #define vpx_highbd_d45e_predictor_4x4 vpx_highbd_d45e_predictor_4x4_c
792
793 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);
794 #define vpx_highbd_d45e_predictor_8x8 vpx_highbd_d45e_predictor_8x8_c
795
796 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);
797 #define vpx_highbd_d63_predictor_16x16 vpx_highbd_d63_predictor_16x16_c
798
799 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);
800 #define vpx_highbd_d63_predictor_32x32 vpx_highbd_d63_predictor_32x32_c
801
802 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);
803 #define vpx_highbd_d63_predictor_4x4 vpx_highbd_d63_predictor_4x4_c
804
805 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);
806 #define vpx_highbd_d63_predictor_8x8 vpx_highbd_d63_predictor_8x8_c
807
808 void vpx_highbd_d63e_predictor_16x16_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
809 #define vpx_highbd_d63e_predictor_16x16 vpx_highbd_d63e_predictor_16x16_c
810
811 void vpx_highbd_d63e_predictor_32x32_c(uint16_t *dst, ptrdiff_t y_stride, const uint16_t *above, const uint16_t *left, int bd);
812 #define vpx_highbd_d63e_predictor_32x32 vpx_highbd_d63e_predictor_32x32_c
813
814 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);
815 #define vpx_highbd_d63e_predictor_4x4 vpx_highbd_d63e_predictor_4x4_c
816
817 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);
818 #define vpx_highbd_d63e_predictor_8x8 vpx_highbd_d63e_predictor_8x8_c
819
820 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);
821 #define vpx_highbd_dc_128_predictor_16x16 vpx_highbd_dc_128_predictor_16x16_c
822
823 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);
824 #define vpx_highbd_dc_128_predictor_32x32 vpx_highbd_dc_128_predictor_32x32_c
825
826 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);
827 #define vpx_highbd_dc_128_predictor_4x4 vpx_highbd_dc_128_predictor_4x4_c
828
829 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);
830 #define vpx_highbd_dc_128_predictor_8x8 vpx_highbd_dc_128_predictor_8x8_c
831
832 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);
833 #define vpx_highbd_dc_left_predictor_16x16 vpx_highbd_dc_left_predictor_16x16_c
834
835 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);
836 #define vpx_highbd_dc_left_predictor_32x32 vpx_highbd_dc_left_predictor_32x32_c
837
838 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);
839 #define vpx_highbd_dc_left_predictor_4x4 vpx_highbd_dc_left_predictor_4x4_c
840
841 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);
842 #define vpx_highbd_dc_left_predictor_8x8 vpx_highbd_dc_left_predictor_8x8_c
843
844 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);
845 #define vpx_highbd_dc_predictor_16x16 vpx_highbd_dc_predictor_16x16_c
846
847 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);
848 #define vpx_highbd_dc_predictor_32x32 vpx_highbd_dc_predictor_32x32_c
849
850 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);
851 #define vpx_highbd_dc_predictor_4x4 vpx_highbd_dc_predictor_4x4_c
852
853 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);
854 #define vpx_highbd_dc_predictor_8x8 vpx_highbd_dc_predictor_8x8_c
855
856 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);
857 #define vpx_highbd_dc_top_predictor_16x16 vpx_highbd_dc_top_predictor_16x16_c
858
859 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);
860 #define vpx_highbd_dc_top_predictor_32x32 vpx_highbd_dc_top_predictor_32x32_c
861
862 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);
863 #define vpx_highbd_dc_top_predictor_4x4 vpx_highbd_dc_top_predictor_4x4_c
864
865 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);
866 #define vpx_highbd_dc_top_predictor_8x8 vpx_highbd_dc_top_predictor_8x8_c
867
868 void vpx_highbd_fdct16x16_c(const int16_t *input, tran_low_t *output, int stride );
869 #define vpx_highbd_fdct16x16 vpx_highbd_fdct16x16_c
870
871 void vpx_highbd_fdct16x16_1_c(const int16_t *input, tran_low_t *output, int stri de);
872 #define vpx_highbd_fdct16x16_1 vpx_highbd_fdct16x16_1_c
873
874 void vpx_highbd_fdct32x32_c(const int16_t *input, tran_low_t *output, int stride );
875 #define vpx_highbd_fdct32x32 vpx_highbd_fdct32x32_c
876
877 void vpx_highbd_fdct32x32_1_c(const int16_t *input, tran_low_t *output, int stri de);
878 #define vpx_highbd_fdct32x32_1 vpx_highbd_fdct32x32_1_c
879
880 void vpx_highbd_fdct32x32_rd_c(const int16_t *input, tran_low_t *output, int str ide);
881 #define vpx_highbd_fdct32x32_rd vpx_highbd_fdct32x32_rd_c
882
883 void vpx_highbd_fdct4x4_c(const int16_t *input, tran_low_t *output, int stride);
884 #define vpx_highbd_fdct4x4 vpx_highbd_fdct4x4_c
885
886 void vpx_highbd_fdct8x8_c(const int16_t *input, tran_low_t *output, int stride);
887 #define vpx_highbd_fdct8x8 vpx_highbd_fdct8x8_c
888
889 void vpx_highbd_fdct8x8_1_c(const int16_t *input, tran_low_t *output, int stride );
890 #define vpx_highbd_fdct8x8_1 vpx_highbd_fdct8x8_1_c
891
892 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);
893 #define vpx_highbd_h_predictor_16x16 vpx_highbd_h_predictor_16x16_c
894
895 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);
896 #define vpx_highbd_h_predictor_32x32 vpx_highbd_h_predictor_32x32_c
897
898 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);
899 #define vpx_highbd_h_predictor_4x4 vpx_highbd_h_predictor_4x4_c
900
901 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);
902 #define vpx_highbd_h_predictor_8x8 vpx_highbd_h_predictor_8x8_c
903
904 void vpx_highbd_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int d est_stride, int bd);
905 #define vpx_highbd_idct16x16_10_add vpx_highbd_idct16x16_10_add_c
906
907 void vpx_highbd_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int de st_stride, int bd);
908 #define vpx_highbd_idct16x16_1_add vpx_highbd_idct16x16_1_add_c
909
910 void vpx_highbd_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int bd);
911 #define vpx_highbd_idct16x16_256_add vpx_highbd_idct16x16_256_add_c
912
913 void vpx_highbd_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int bd);
914 #define vpx_highbd_idct32x32_1024_add vpx_highbd_idct32x32_1024_add_c
915
916 void vpx_highbd_idct32x32_1_add_c(const tran_low_t *input, uint8_t *dest, int de st_stride, int bd);
917 #define vpx_highbd_idct32x32_1_add vpx_highbd_idct32x32_1_add_c
918
919 void vpx_highbd_idct32x32_34_add_c(const tran_low_t *input, uint8_t *dest, int d est_stride, int bd);
920 #define vpx_highbd_idct32x32_34_add vpx_highbd_idct32x32_34_add_c
921
922 void vpx_highbd_idct4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int des t_stride, int bd);
923 #define vpx_highbd_idct4x4_16_add vpx_highbd_idct4x4_16_add_c
924
925 void vpx_highbd_idct4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest _stride, int bd);
926 #define vpx_highbd_idct4x4_1_add vpx_highbd_idct4x4_1_add_c
927
928 void vpx_highbd_idct8x8_10_add_c(const tran_low_t *input, uint8_t *dest, int des t_stride, int bd);
929 #define vpx_highbd_idct8x8_10_add vpx_highbd_idct8x8_10_add_c
930
931 void vpx_highbd_idct8x8_1_add_c(const tran_low_t *input, uint8_t *dest, int dest _stride, int bd);
932 #define vpx_highbd_idct8x8_1_add vpx_highbd_idct8x8_1_add_c
933
934 void vpx_highbd_idct8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int des t_stride, int bd);
935 #define vpx_highbd_idct8x8_64_add vpx_highbd_idct8x8_64_add_c
936
937 void vpx_highbd_iwht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int des t_stride, int bd);
938 #define vpx_highbd_iwht4x4_16_add vpx_highbd_iwht4x4_16_add_c
939
940 void vpx_highbd_iwht4x4_1_add_c(const tran_low_t *input, uint8_t *dest, int dest _stride, int bd);
941 #define vpx_highbd_iwht4x4_1_add vpx_highbd_iwht4x4_1_add_c
942
943 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);
944 #define vpx_highbd_lpf_horizontal_4 vpx_highbd_lpf_horizontal_4_c
945
946 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);
947 #define vpx_highbd_lpf_horizontal_4_dual vpx_highbd_lpf_horizontal_4_dual_c
948
949 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);
950 #define vpx_highbd_lpf_horizontal_8 vpx_highbd_lpf_horizontal_8_c
951
952 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);
953 #define vpx_highbd_lpf_horizontal_8_dual vpx_highbd_lpf_horizontal_8_dual_c
954
955 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);
956 #define vpx_highbd_lpf_horizontal_edge_16 vpx_highbd_lpf_horizontal_edge_16_c
957
958 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);
959 #define vpx_highbd_lpf_horizontal_edge_8 vpx_highbd_lpf_horizontal_edge_8_c
960
961 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);
962 #define vpx_highbd_lpf_vertical_16 vpx_highbd_lpf_vertical_16_c
963
964 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);
965 #define vpx_highbd_lpf_vertical_16_dual vpx_highbd_lpf_vertical_16_dual_c
966
967 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);
968 #define vpx_highbd_lpf_vertical_4 vpx_highbd_lpf_vertical_4_c
969
970 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);
971 #define vpx_highbd_lpf_vertical_4_dual vpx_highbd_lpf_vertical_4_dual_c
972
973 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);
974 #define vpx_highbd_lpf_vertical_8 vpx_highbd_lpf_vertical_8_c
975
976 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);
977 #define vpx_highbd_lpf_vertical_8_dual vpx_highbd_lpf_vertical_8_dual_c
978
979 void vpx_highbd_minmax_8x8_c(const uint8_t *s, int p, const uint8_t *d, int dp, int *min, int *max);
980 #define vpx_highbd_minmax_8x8 vpx_highbd_minmax_8x8_c
981
982 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);
983 #define vpx_highbd_quantize_b vpx_highbd_quantize_b_c
984
985 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);
986 #define vpx_highbd_quantize_b_32x32 vpx_highbd_quantize_b_32x32_c
987
988 unsigned int vpx_highbd_sad16x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
989 #define vpx_highbd_sad16x16 vpx_highbd_sad16x16_c
990
991 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);
992 #define vpx_highbd_sad16x16_avg vpx_highbd_sad16x16_avg_c
993
994 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);
995 #define vpx_highbd_sad16x16x3 vpx_highbd_sad16x16x3_c
996
997 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);
998 #define vpx_highbd_sad16x16x4d vpx_highbd_sad16x16x4d_c
999
1000 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);
1001 #define vpx_highbd_sad16x16x8 vpx_highbd_sad16x16x8_c
1002
1003 unsigned int vpx_highbd_sad16x32_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1004 #define vpx_highbd_sad16x32 vpx_highbd_sad16x32_c
1005
1006 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);
1007 #define vpx_highbd_sad16x32_avg vpx_highbd_sad16x32_avg_c
1008
1009 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);
1010 #define vpx_highbd_sad16x32x4d vpx_highbd_sad16x32x4d_c
1011
1012 unsigned int vpx_highbd_sad16x8_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1013 #define vpx_highbd_sad16x8 vpx_highbd_sad16x8_c
1014
1015 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);
1016 #define vpx_highbd_sad16x8_avg vpx_highbd_sad16x8_avg_c
1017
1018 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);
1019 #define vpx_highbd_sad16x8x3 vpx_highbd_sad16x8x3_c
1020
1021 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);
1022 #define vpx_highbd_sad16x8x4d vpx_highbd_sad16x8x4d_c
1023
1024 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);
1025 #define vpx_highbd_sad16x8x8 vpx_highbd_sad16x8x8_c
1026
1027 unsigned int vpx_highbd_sad32x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1028 #define vpx_highbd_sad32x16 vpx_highbd_sad32x16_c
1029
1030 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);
1031 #define vpx_highbd_sad32x16_avg vpx_highbd_sad32x16_avg_c
1032
1033 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);
1034 #define vpx_highbd_sad32x16x4d vpx_highbd_sad32x16x4d_c
1035
1036 unsigned int vpx_highbd_sad32x32_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1037 #define vpx_highbd_sad32x32 vpx_highbd_sad32x32_c
1038
1039 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);
1040 #define vpx_highbd_sad32x32_avg vpx_highbd_sad32x32_avg_c
1041
1042 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);
1043 #define vpx_highbd_sad32x32x3 vpx_highbd_sad32x32x3_c
1044
1045 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);
1046 #define vpx_highbd_sad32x32x4d vpx_highbd_sad32x32x4d_c
1047
1048 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);
1049 #define vpx_highbd_sad32x32x8 vpx_highbd_sad32x32x8_c
1050
1051 unsigned int vpx_highbd_sad32x64_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1052 #define vpx_highbd_sad32x64 vpx_highbd_sad32x64_c
1053
1054 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);
1055 #define vpx_highbd_sad32x64_avg vpx_highbd_sad32x64_avg_c
1056
1057 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);
1058 #define vpx_highbd_sad32x64x4d vpx_highbd_sad32x64x4d_c
1059
1060 unsigned int vpx_highbd_sad4x4_c(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride);
1061 #define vpx_highbd_sad4x4 vpx_highbd_sad4x4_c
1062
1063 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);
1064 #define vpx_highbd_sad4x4_avg vpx_highbd_sad4x4_avg_c
1065
1066 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);
1067 #define vpx_highbd_sad4x4x3 vpx_highbd_sad4x4x3_c
1068
1069 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);
1070 #define vpx_highbd_sad4x4x4d vpx_highbd_sad4x4x4d_c
1071
1072 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);
1073 #define vpx_highbd_sad4x4x8 vpx_highbd_sad4x4x8_c
1074
1075 unsigned int vpx_highbd_sad4x8_c(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride);
1076 #define vpx_highbd_sad4x8 vpx_highbd_sad4x8_c
1077
1078 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);
1079 #define vpx_highbd_sad4x8_avg vpx_highbd_sad4x8_avg_c
1080
1081 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);
1082 #define vpx_highbd_sad4x8x4d vpx_highbd_sad4x8x4d_c
1083
1084 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);
1085 #define vpx_highbd_sad4x8x8 vpx_highbd_sad4x8x8_c
1086
1087 unsigned int vpx_highbd_sad64x32_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1088 #define vpx_highbd_sad64x32 vpx_highbd_sad64x32_c
1089
1090 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);
1091 #define vpx_highbd_sad64x32_avg vpx_highbd_sad64x32_avg_c
1092
1093 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);
1094 #define vpx_highbd_sad64x32x4d vpx_highbd_sad64x32x4d_c
1095
1096 unsigned int vpx_highbd_sad64x64_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1097 #define vpx_highbd_sad64x64 vpx_highbd_sad64x64_c
1098
1099 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);
1100 #define vpx_highbd_sad64x64_avg vpx_highbd_sad64x64_avg_c
1101
1102 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);
1103 #define vpx_highbd_sad64x64x3 vpx_highbd_sad64x64x3_c
1104
1105 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);
1106 #define vpx_highbd_sad64x64x4d vpx_highbd_sad64x64x4d_c
1107
1108 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);
1109 #define vpx_highbd_sad64x64x8 vpx_highbd_sad64x64x8_c
1110
1111 unsigned int vpx_highbd_sad8x16_c(const uint8_t *src_ptr, int src_stride, const uint8_t *ref_ptr, int ref_stride);
1112 #define vpx_highbd_sad8x16 vpx_highbd_sad8x16_c
1113
1114 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);
1115 #define vpx_highbd_sad8x16_avg vpx_highbd_sad8x16_avg_c
1116
1117 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);
1118 #define vpx_highbd_sad8x16x3 vpx_highbd_sad8x16x3_c
1119
1120 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);
1121 #define vpx_highbd_sad8x16x4d vpx_highbd_sad8x16x4d_c
1122
1123 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);
1124 #define vpx_highbd_sad8x16x8 vpx_highbd_sad8x16x8_c
1125
1126 unsigned int vpx_highbd_sad8x4_c(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride);
1127 #define vpx_highbd_sad8x4 vpx_highbd_sad8x4_c
1128
1129 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);
1130 #define vpx_highbd_sad8x4_avg vpx_highbd_sad8x4_avg_c
1131
1132 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);
1133 #define vpx_highbd_sad8x4x4d vpx_highbd_sad8x4x4d_c
1134
1135 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);
1136 #define vpx_highbd_sad8x4x8 vpx_highbd_sad8x4x8_c
1137
1138 unsigned int vpx_highbd_sad8x8_c(const uint8_t *src_ptr, int src_stride, const u int8_t *ref_ptr, int ref_stride);
1139 #define vpx_highbd_sad8x8 vpx_highbd_sad8x8_c
1140
1141 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);
1142 #define vpx_highbd_sad8x8_avg vpx_highbd_sad8x8_avg_c
1143
1144 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);
1145 #define vpx_highbd_sad8x8x3 vpx_highbd_sad8x8x3_c
1146
1147 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);
1148 #define vpx_highbd_sad8x8x4d vpx_highbd_sad8x8x4d_c
1149
1150 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);
1151 #define vpx_highbd_sad8x8x8 vpx_highbd_sad8x8x8_c
1152
1153 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);
1154 #define vpx_highbd_subtract_block vpx_highbd_subtract_block_c
1155
1156 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);
1157 #define vpx_highbd_tm_predictor_16x16 vpx_highbd_tm_predictor_16x16_c
1158
1159 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);
1160 #define vpx_highbd_tm_predictor_32x32 vpx_highbd_tm_predictor_32x32_c
1161
1162 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);
1163 #define vpx_highbd_tm_predictor_4x4 vpx_highbd_tm_predictor_4x4_c
1164
1165 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);
1166 #define vpx_highbd_tm_predictor_8x8 vpx_highbd_tm_predictor_8x8_c
1167
1168 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);
1169 #define vpx_highbd_v_predictor_16x16 vpx_highbd_v_predictor_16x16_c
1170
1171 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);
1172 #define vpx_highbd_v_predictor_32x32 vpx_highbd_v_predictor_32x32_c
1173
1174 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);
1175 #define vpx_highbd_v_predictor_4x4 vpx_highbd_v_predictor_4x4_c
1176
1177 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);
1178 #define vpx_highbd_v_predictor_8x8 vpx_highbd_v_predictor_8x8_c
1179
274 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide); 1180 void vpx_idct16x16_10_add_c(const tran_low_t *input, uint8_t *dest, int dest_str ide);
275 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_c 1181 #define vpx_idct16x16_10_add vpx_idct16x16_10_add_c
276 1182
277 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de); 1183 void vpx_idct16x16_1_add_c(const tran_low_t *input, uint8_t *dest, int dest_stri de);
278 #define vpx_idct16x16_1_add vpx_idct16x16_1_add_c 1184 #define vpx_idct16x16_1_add vpx_idct16x16_1_add_c
279 1185
280 void vpx_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride); 1186 void vpx_idct16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int dest_st ride);
281 #define vpx_idct16x16_256_add vpx_idct16x16_256_add_c 1187 #define vpx_idct16x16_256_add vpx_idct16x16_256_add_c
282 1188
283 void vpx_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_s tride); 1189 void vpx_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest, int dest_s tride);
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 (void)flags; 1646 (void)flags;
741 1647
742 } 1648 }
743 #endif 1649 #endif
744 1650
745 #ifdef __cplusplus 1651 #ifdef __cplusplus
746 } // extern "C" 1652 } // extern "C"
747 #endif 1653 #endif
748 1654
749 #endif 1655 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698