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

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

Issue 232133009: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 8 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse) ; 415 unsigned int vp8_variance_halfpixvar16x16_v_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse) ;
416 unsigned int vp8_variance_halfpixvar16x16_v_armv6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int * sse); 416 unsigned int vp8_variance_halfpixvar16x16_v_armv6(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int * sse);
417 unsigned int vp8_variance_halfpixvar16x16_v_neon(const unsigned char *src_ptr, i nt source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *s se); 417 unsigned int vp8_variance_halfpixvar16x16_v_neon(const unsigned char *src_ptr, i nt source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *s se);
418 #define vp8_variance_halfpixvar16x16_v vp8_variance_halfpixvar16x16_v_neon 418 #define vp8_variance_halfpixvar16x16_v vp8_variance_halfpixvar16x16_v_neon
419 419
420 void vp8_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv 12_buffer_config *dst_ybc); 420 void vp8_yv12_copy_partial_frame_c(struct yv12_buffer_config *src_ybc, struct yv 12_buffer_config *dst_ybc);
421 void vp8_yv12_copy_partial_frame_neon(struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc); 421 void vp8_yv12_copy_partial_frame_neon(struct yv12_buffer_config *src_ybc, struct yv12_buffer_config *dst_ybc);
422 #define vp8_yv12_copy_partial_frame vp8_yv12_copy_partial_frame_neon 422 #define vp8_yv12_copy_partial_frame vp8_yv12_copy_partial_frame_neon
423 423
424 void vp8_rtcd(void); 424 void vp8_rtcd(void);
425
425 #include "vpx_config.h" 426 #include "vpx_config.h"
426 427
427 #ifdef RTCD_C 428 #ifdef RTCD_C
428 #include "vpx_ports/arm.h" 429 #include "vpx_ports/arm.h"
429 static void setup_rtcd_internal(void) 430 static void setup_rtcd_internal(void)
430 { 431 {
431 int flags = arm_cpu_caps(); 432 int flags = arm_cpu_caps();
432 433
433 (void)flags; 434 (void)flags;
434 435
435
436 } 436 }
437 #endif 437 #endif
438 438
439 #ifdef __cplusplus 439 #ifdef __cplusplus
440 } // extern "C" 440 } // extern "C"
441 #endif 441 #endif
442 442
443 #endif 443 #endif
OLDNEW
« no previous file with comments | « source/config/linux/arm-neon-cpu-detect/vpx_scale_rtcd.h ('k') | source/config/linux/arm-neon/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698