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

Side by Side Diff: source/config/linux/arm64/vp8_rtcd.h

Issue 290613006: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 #ifndef VP8_RTCD_H_ 1 #ifndef VP8_RTCD_H_
2 #define VP8_RTCD_H_ 2 #define VP8_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 #ifdef __cplusplus 10 #ifdef __cplusplus
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 #define vp8_copy_mem8x4 vp8_copy_mem8x4_neon 72 #define vp8_copy_mem8x4 vp8_copy_mem8x4_neon
73 73
74 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch); 74 void vp8_copy_mem8x8_c(unsigned char *src, int src_pitch, unsigned char *dst, in t dst_pitch);
75 void vp8_copy_mem8x8_neon(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch); 75 void vp8_copy_mem8x8_neon(unsigned char *src, int src_pitch, unsigned char *dst, int dst_pitch);
76 #define vp8_copy_mem8x8 vp8_copy_mem8x8_neon 76 #define vp8_copy_mem8x8 vp8_copy_mem8x8_neon
77 77
78 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u nsigned char *dst, int dst_stride); 78 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u nsigned char *dst, int dst_stride);
79 void vp8_dc_only_idct_add_neon(short input, unsigned char *pred, int pred_stride , unsigned char *dst, int dst_stride); 79 void vp8_dc_only_idct_add_neon(short input, unsigned char *pred, int pred_stride , unsigned char *dst, int dst_stride);
80 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_neon 80 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_neon
81 81
82 int vp8_denoiser_filter_c(unsigned char *mc_running_avg_y, int mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_stri de, unsigned int motion_magnitude); 82 int vp8_denoiser_filter_c(unsigned char *mc_running_avg_y, int mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_stri de, unsigned int motion_magnitude, int increase_denoising);
83 int vp8_denoiser_filter_neon(unsigned char *mc_running_avg_y, int mc_avg_y_strid e, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_s tride, unsigned int motion_magnitude); 83 int vp8_denoiser_filter_neon(unsigned char *mc_running_avg_y, int mc_avg_y_strid e, unsigned char *running_avg_y, int avg_y_stride, unsigned char *sig, int sig_s tride, unsigned int motion_magnitude, int increase_denoising);
84 #define vp8_denoiser_filter vp8_denoiser_filter_neon 84 #define vp8_denoiser_filter vp8_denoiser_filter_neon
85 85
86 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride); 86 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
87 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, i nt stride); 87 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, i nt stride);
88 #define vp8_dequant_idct_add vp8_dequant_idct_add_neon 88 #define vp8_dequant_idct_add vp8_dequant_idct_add_neon
89 89
90 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs); 90 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
91 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_c 91 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_c
92 92
93 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs); 93 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 (void)flags; 369 (void)flags;
370 370
371 } 371 }
372 #endif 372 #endif
373 373
374 #ifdef __cplusplus 374 #ifdef __cplusplus
375 } // extern "C" 375 } // extern "C"
376 #endif 376 #endif
377 377
378 #endif 378 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698