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

Side by Side Diff: source/config/linux/arm-neon/vp8_rtcd.h

Issue 375983002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 5 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 84
85 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u nsigned char *dst, int dst_stride); 85 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, u nsigned char *dst, int dst_stride);
86 void vp8_dc_only_idct_add_v6(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride); 86 void vp8_dc_only_idct_add_v6(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride);
87 void vp8_dc_only_idct_add_neon(short input, unsigned char *pred, int pred_stride , unsigned char *dst, int dst_stride); 87 void vp8_dc_only_idct_add_neon(short input, unsigned char *pred, int pred_stride , unsigned char *dst, int dst_stride);
88 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_neon 88 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_neon
89 89
90 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); 90 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);
91 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); 91 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);
92 #define vp8_denoiser_filter vp8_denoiser_filter_neon 92 #define vp8_denoiser_filter vp8_denoiser_filter_neon
93 93
94 int vp8_denoiser_filter_uv_c(unsigned char *mc_running_avg, int mc_avg_stride, u nsigned char *running_avg, int avg_stride, unsigned char *sig, int sig_stride, u nsigned int motion_magnitude, int increase_denoising);
95 int vp8_denoiser_filter_uv_neon(unsigned char *mc_running_avg, int mc_avg_stride , unsigned char *running_avg, int avg_stride, unsigned char *sig, int sig_stride , unsigned int motion_magnitude, int increase_denoising);
96 #define vp8_denoiser_filter_uv vp8_denoiser_filter_uv_neon
97
94 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride); 98 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
95 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride); 99 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride);
96 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, i nt stride); 100 void vp8_dequant_idct_add_neon(short *input, short *dq, unsigned char *output, i nt stride);
97 #define vp8_dequant_idct_add vp8_dequant_idct_add_neon 101 #define vp8_dequant_idct_add vp8_dequant_idct_add_neon
98 102
99 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs); 103 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
100 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs); 104 void vp8_dequant_idct_add_uv_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
101 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *dst_ u, unsigned char *dst_v, int stride, char *eobs); 105 void vp8_dequant_idct_add_uv_block_neon(short *q, short *dq, unsigned char *dst_ u, unsigned char *dst_v, int stride, char *eobs);
102 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_neon 106 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_neon
103 107
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 (void)flags; 438 (void)flags;
435 439
436 } 440 }
437 #endif 441 #endif
438 442
439 #ifdef __cplusplus 443 #ifdef __cplusplus
440 } // extern "C" 444 } // extern "C"
441 #endif 445 #endif
442 446
443 #endif 447 #endif
OLDNEW
« no previous file with comments | « source/config/linux/arm-neon-cpu-detect/vpx_config.asm ('k') | source/config/linux/arm-neon/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698