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

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

Issue 394353005: 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/vpx_config.asm ('k') | source/config/linux/arm64/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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 #define vp8_short_inv_walsh4x4_1 vp8_short_inv_walsh4x4_1_c 284 #define vp8_short_inv_walsh4x4_1 vp8_short_inv_walsh4x4_1_c
285 285
286 void vp8_short_walsh4x4_c(short *input, short *output, int pitch); 286 void vp8_short_walsh4x4_c(short *input, short *output, int pitch);
287 #define vp8_short_walsh4x4 vp8_short_walsh4x4_c 287 #define vp8_short_walsh4x4 vp8_short_walsh4x4_c
288 288
289 void vp8_sixtap_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch); 289 void vp8_sixtap_predict16x16_c(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
290 void vp8_sixtap_predict16x16_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch); 290 void vp8_sixtap_predict16x16_neon(unsigned char *src, int src_pitch, int xofst, int yofst, unsigned char *dst, int dst_pitch);
291 #define vp8_sixtap_predict16x16 vp8_sixtap_predict16x16_neon 291 #define vp8_sixtap_predict16x16 vp8_sixtap_predict16x16_neon
292 292
293 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 293 void vp8_sixtap_predict4x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
294 void vp8_sixtap_predict4x4_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch); 294 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c
295 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_neon
296 295
297 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 296 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
298 void vp8_sixtap_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch); 297 void vp8_sixtap_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch);
299 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_neon 298 #define vp8_sixtap_predict8x4 vp8_sixtap_predict8x4_neon
300 299
301 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 300 void vp8_sixtap_predict8x8_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
302 void vp8_sixtap_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch); 301 void vp8_sixtap_predict8x8_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch);
303 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_neon 302 #define vp8_sixtap_predict8x8 vp8_sixtap_predict8x8_neon
304 303
305 unsigned int vp8_sub_pixel_mse16x16_c(const unsigned char *src_ptr, int source _stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride , unsigned int *sse); 304 unsigned int vp8_sub_pixel_mse16x16_c(const unsigned char *src_ptr, int source _stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstride , unsigned int *sse);
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 (void)flags; 372 (void)flags;
374 373
375 } 374 }
376 #endif 375 #endif
377 376
378 #ifdef __cplusplus 377 #ifdef __cplusplus
379 } // extern "C" 378 } // extern "C"
380 #endif 379 #endif
381 380
382 #endif 381 #endif
OLDNEW
« no previous file with comments | « source/config/linux/arm/vpx_config.asm ('k') | source/config/linux/arm64/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698