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

Side by Side Diff: source/config/linux/arm-neon-cpu-detect/vpx_scale_rtcd.h

Issue 13042014: Description: (Closed) Base URL: https://src.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: libvpx: Pull from upstream Created 7 years, 9 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
OLDNEW
1 #ifndef VPX_SCALE_RTCD_ 1 #ifndef VPX_SCALE_RTCD_H_
2 #define VPX_SCALE_RTCD_ 2 #define VPX_SCALE_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 struct yv12_buffer_config; 10 struct yv12_buffer_config;
11 11
12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int s ource_width, unsigned char *dest, unsigned int dest_width); 12 void vp8_horizontal_line_5_4_scale_c(const unsigned char *source, unsigned int s ource_width, unsigned char *dest, unsigned int dest_width);
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 if (flags & HAS_NEON) vp8_yv12_extend_frame_borders = vp8_yv12_extend_frame_ borders_neon; 64 if (flags & HAS_NEON) vp8_yv12_extend_frame_borders = vp8_yv12_extend_frame_ borders_neon;
65 65
66 vp8_yv12_copy_frame = vp8_yv12_copy_frame_c; 66 vp8_yv12_copy_frame = vp8_yv12_copy_frame_c;
67 if (flags & HAS_NEON) vp8_yv12_copy_frame = vp8_yv12_copy_frame_neon; 67 if (flags & HAS_NEON) vp8_yv12_copy_frame = vp8_yv12_copy_frame_neon;
68 68
69 vp8_yv12_copy_y = vp8_yv12_copy_y_c; 69 vp8_yv12_copy_y = vp8_yv12_copy_y_c;
70 if (flags & HAS_NEON) vp8_yv12_copy_y = vp8_yv12_copy_y_neon; 70 if (flags & HAS_NEON) vp8_yv12_copy_y = vp8_yv12_copy_y_neon;
71 } 71 }
72 #endif 72 #endif
73 #endif 73 #endif
OLDNEW
« no previous file with comments | « source/config/linux/arm-neon-cpu-detect/vp9_rtcd.h ('k') | source/config/linux/arm-neon/vp8_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698