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

Side by Side Diff: source/config/linux/arm/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
« no previous file with comments | « source/config/linux/arm-neon/vpx_config.asm ('k') | source/config/linux/arm/vp9_rtcd.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 void vp8_copy_mem8x8_v6(unsigned char *src, int src_pitch, unsigned char *dst, i nt dst_pitch); 75 void vp8_copy_mem8x8_v6(unsigned char *src, int src_pitch, unsigned char *dst, i nt dst_pitch);
76 #define vp8_copy_mem8x8 vp8_copy_mem8x8_v6 76 #define vp8_copy_mem8x8 vp8_copy_mem8x8_v6
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_v6(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride); 79 void vp8_dc_only_idct_add_v6(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_v6 80 #define vp8_dc_only_idct_add vp8_dc_only_idct_add_v6
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, int increase_denoising); 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 #define vp8_denoiser_filter vp8_denoiser_filter_c 83 #define vp8_denoiser_filter vp8_denoiser_filter_c
84 84
85 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);
86 #define vp8_denoiser_filter_uv vp8_denoiser_filter_uv_c
87
85 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride); 88 void vp8_dequant_idct_add_c(short *input, short *dq, unsigned char *output, int stride);
86 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride); 89 void vp8_dequant_idct_add_v6(short *input, short *dq, unsigned char *output, int stride);
87 #define vp8_dequant_idct_add vp8_dequant_idct_add_v6 90 #define vp8_dequant_idct_add vp8_dequant_idct_add_v6
88 91
89 void vp8_dequant_idct_add_uv_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs); 92 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_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs); 93 void vp8_dequant_idct_add_uv_block_v6(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_v6 94 #define vp8_dequant_idct_add_uv_block vp8_dequant_idct_add_uv_block_v6
92 95
93 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs); 96 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
94 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, in t stride, char *eobs); 97 void vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, in t stride, char *eobs);
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 (void)flags; 382 (void)flags;
380 383
381 } 384 }
382 #endif 385 #endif
383 386
384 #ifdef __cplusplus 387 #ifdef __cplusplus
385 } // extern "C" 388 } // extern "C"
386 #endif 389 #endif
387 390
388 #endif 391 #endif
OLDNEW
« no previous file with comments | « source/config/linux/arm-neon/vpx_config.asm ('k') | source/config/linux/arm/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698