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

Side by Side Diff: source/config/win/x64/vp9_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, 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
« no previous file with comments | « source/config/win/x64/vp8_rtcd.h ('k') | source/config/win/x64/vpx_scale_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 VP__RTCD_ 1 #ifndef VP9_RTCD_H_
2 #define VP__RTCD_ 2 #define VP9_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 /* 10 /*
11 * VP9 11 * VP9
12 */ 12 */
13 13
14 #include "vpx/vpx_integer.h" 14 #include "vpx/vpx_integer.h"
15 15
16 struct loop_filter_info; 16 struct loop_filter_info;
17 struct blockd; 17 struct blockd;
18 struct macroblockd; 18 struct macroblockd;
19 struct loop_filter_info; 19 struct loop_filter_info;
20 20
21 /* Encoder forward decls */ 21 /* Encoder forward decls */
22 struct block; 22 struct block;
23 struct macroblock; 23 struct macroblock;
24 struct variance_vtable; 24 struct vp9_variance_vtable;
25 25
26 #define DEC_MVCOSTS int *mvjcost, int *mvcost[2] 26 #define DEC_MVCOSTS int *mvjcost, int *mvcost[2]
27 union int_mv; 27 union int_mv;
28 struct yv12_buffer_config; 28 struct yv12_buffer_config;
29 29
30 void vp9_filter_block2d_4x4_8_c(const uint8_t *src_ptr, const unsigned int src_s tride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, uint8 _t *dst_ptr, unsigned int dst_stride); 30 void vp9_filter_block2d_4x4_8_c(const uint8_t *src_ptr, const unsigned int src_s tride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, uint8 _t *dst_ptr, unsigned int dst_stride);
31 #define vp9_filter_block2d_4x4_8 vp9_filter_block2d_4x4_8_c 31 #define vp9_filter_block2d_4x4_8 vp9_filter_block2d_4x4_8_c
32 32
33 void vp9_filter_block2d_8x4_8_c(const uint8_t *src_ptr, const unsigned int src_s tride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, uint8 _t *dst_ptr, unsigned int dst_stride); 33 void vp9_filter_block2d_8x4_8_c(const uint8_t *src_ptr, const unsigned int src_s tride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, uint8 _t *dst_ptr, unsigned int dst_stride);
34 void vp9_filter_block2d_8x4_8_ssse3(const uint8_t *src_ptr, const unsigned int s rc_stride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, u int8_t *dst_ptr, unsigned int dst_stride); 34 void vp9_filter_block2d_8x4_8_ssse3(const uint8_t *src_ptr, const unsigned int s rc_stride, const int16_t *HFilter_aligned16, const int16_t *VFilter_aligned16, u int8_t *dst_ptr, unsigned int dst_stride);
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 if (flags & HAS_SSSE3) vp9_filter_block2d_8x4_8 = vp9_filter_block2d_8x4_8_s sse3; 434 if (flags & HAS_SSSE3) vp9_filter_block2d_8x4_8 = vp9_filter_block2d_8x4_8_s sse3;
435 435
436 vp9_filter_block2d_8x8_8 = vp9_filter_block2d_8x8_8_c; 436 vp9_filter_block2d_8x8_8 = vp9_filter_block2d_8x8_8_c;
437 if (flags & HAS_SSSE3) vp9_filter_block2d_8x8_8 = vp9_filter_block2d_8x8_8_s sse3; 437 if (flags & HAS_SSSE3) vp9_filter_block2d_8x8_8 = vp9_filter_block2d_8x8_8_s sse3;
438 438
439 vp9_filter_block2d_16x16_8 = vp9_filter_block2d_16x16_8_c; 439 vp9_filter_block2d_16x16_8 = vp9_filter_block2d_16x16_8_c;
440 if (flags & HAS_SSSE3) vp9_filter_block2d_16x16_8 = vp9_filter_block2d_16x16 _8_ssse3; 440 if (flags & HAS_SSSE3) vp9_filter_block2d_16x16_8 = vp9_filter_block2d_16x16 _8_ssse3;
441 } 441 }
442 #endif 442 #endif
443 #endif 443 #endif
OLDNEW
« no previous file with comments | « source/config/win/x64/vp8_rtcd.h ('k') | source/config/win/x64/vpx_scale_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698