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

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

Issue 484923003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 4 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/vpx_config.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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 #define vp8_short_idct4x4llm vp8_short_idct4x4llm_neon 277 #define vp8_short_idct4x4llm vp8_short_idct4x4llm_neon
278 278
279 void vp8_short_inv_walsh4x4_c(short *input, short *output); 279 void vp8_short_inv_walsh4x4_c(short *input, short *output);
280 void vp8_short_inv_walsh4x4_neon(short *input, short *output); 280 void vp8_short_inv_walsh4x4_neon(short *input, short *output);
281 #define vp8_short_inv_walsh4x4 vp8_short_inv_walsh4x4_neon 281 #define vp8_short_inv_walsh4x4 vp8_short_inv_walsh4x4_neon
282 282
283 void vp8_short_inv_walsh4x4_1_c(short *input, short *output); 283 void vp8_short_inv_walsh4x4_1_c(short *input, short *output);
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 void vp8_short_walsh4x4_neon(short *input, short *output, int pitch);
288 #define vp8_short_walsh4x4 vp8_short_walsh4x4_neon
288 289
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_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); 291 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 292 #define vp8_sixtap_predict16x16 vp8_sixtap_predict16x16_neon
292 293
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_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch);
294 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c 295 #define vp8_sixtap_predict4x4 vp8_sixtap_predict4x4_c
295 296
296 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, unsigned char *dst, int dst_pitch); 297 void vp8_sixtap_predict8x4_c(unsigned char *src, int src_pitch, int xofst, int y ofst, 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); 298 void vp8_sixtap_predict8x4_neon(unsigned char *src, int src_pitch, int xofst, in t yofst, unsigned char *dst, int dst_pitch);
(...skipping 15 matching lines...) Expand all
313 unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char *src_ptr, int sou rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr ide, unsigned int *sse); 314 unsigned int vp8_sub_pixel_variance4x4_c(const unsigned char *src_ptr, int sou rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr ide, unsigned int *sse);
314 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c 315 #define vp8_sub_pixel_variance4x4 vp8_sub_pixel_variance4x4_c
315 316
316 unsigned int vp8_sub_pixel_variance8x16_c(const unsigned char *src_ptr, int so urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst ride, unsigned int *sse); 317 unsigned int vp8_sub_pixel_variance8x16_c(const unsigned char *src_ptr, int so urce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refst ride, unsigned int *sse);
317 #define vp8_sub_pixel_variance8x16 vp8_sub_pixel_variance8x16_c 318 #define vp8_sub_pixel_variance8x16 vp8_sub_pixel_variance8x16_c
318 319
319 unsigned int vp8_sub_pixel_variance8x8_c(const unsigned char *src_ptr, int sou rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr ide, unsigned int *sse); 320 unsigned int vp8_sub_pixel_variance8x8_c(const unsigned char *src_ptr, int sou rce_stride, int xoffset, int yoffset, const unsigned char *ref_ptr, int Refstr ide, unsigned int *sse);
320 #define vp8_sub_pixel_variance8x8 vp8_sub_pixel_variance8x8_c 321 #define vp8_sub_pixel_variance8x8 vp8_sub_pixel_variance8x8_c
321 322
322 void vp8_subtract_b_c(struct block *be, struct blockd *bd, int pitch); 323 void vp8_subtract_b_c(struct block *be, struct blockd *bd, int pitch);
323 #define vp8_subtract_b vp8_subtract_b_c 324 void vp8_subtract_b_neon(struct block *be, struct blockd *bd, int pitch);
325 #define vp8_subtract_b vp8_subtract_b_neon
324 326
325 void vp8_subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride); 327 void vp8_subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride);
326 #define vp8_subtract_mbuv vp8_subtract_mbuv_c 328 void vp8_subtract_mbuv_neon(short *diff, unsigned char *usrc, unsigned char *vsr c, int src_stride, unsigned char *upred, unsigned char *vpred, int pred_stride);
329 #define vp8_subtract_mbuv vp8_subtract_mbuv_neon
327 330
328 void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigne d char *pred, int pred_stride); 331 void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigne d char *pred, int pred_stride);
329 #define vp8_subtract_mby vp8_subtract_mby_c 332 void vp8_subtract_mby_neon(short *diff, unsigned char *src, int src_stride, unsi gned char *pred, int pred_stride);
333 #define vp8_subtract_mby vp8_subtract_mby_neon
330 334
331 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 335 unsigned int vp8_variance16x16_c(const unsigned char *src_ptr, int source_stride , const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
332 unsigned int vp8_variance16x16_neon(const unsigned char *src_ptr, int source_str ide, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 336 unsigned int vp8_variance16x16_neon(const unsigned char *src_ptr, int source_str ide, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
333 #define vp8_variance16x16 vp8_variance16x16_neon 337 #define vp8_variance16x16 vp8_variance16x16_neon
334 338
335 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 339 unsigned int vp8_variance16x8_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
336 unsigned int vp8_variance16x8_neon(const unsigned char *src_ptr, int source_stri de, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 340 unsigned int vp8_variance16x8_neon(const unsigned char *src_ptr, int source_stri de, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
337 #define vp8_variance16x8 vp8_variance16x8_neon 341 #define vp8_variance16x8 vp8_variance16x8_neon
338 342
339 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse); 343 unsigned int vp8_variance4x4_c(const unsigned char *src_ptr, int source_stride, const unsigned char *ref_ptr, int ref_stride, unsigned int *sse);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 (void)flags; 376 (void)flags;
373 377
374 } 378 }
375 #endif 379 #endif
376 380
377 #ifdef __cplusplus 381 #ifdef __cplusplus
378 } // extern "C" 382 } // extern "C"
379 #endif 383 #endif
380 384
381 #endif 385 #endif
OLDNEW
« no previous file with comments | « source/config/linux/arm/vpx_config.asm ('k') | source/config/linux/arm64/vpx_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698