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

Side by Side Diff: source/config/win/ia32/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, 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
« no previous file with comments | « source/config/win/ia32/vp8_rtcd.h ('k') | source/config/win/ia32/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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 590
591 591
592 vp9_bilinear_predict16x16 = vp9_bilinear_predict16x16_c; 592 vp9_bilinear_predict16x16 = vp9_bilinear_predict16x16_c;
593 if (flags & HAS_SSE2) vp9_bilinear_predict16x16 = vp9_bilinear_predict16x16_ sse2; 593 if (flags & HAS_SSE2) vp9_bilinear_predict16x16 = vp9_bilinear_predict16x16_ sse2;
594 594
595 vp9_bilinear_predict8x8 = vp9_bilinear_predict8x8_c; 595 vp9_bilinear_predict8x8 = vp9_bilinear_predict8x8_c;
596 if (flags & HAS_SSE2) vp9_bilinear_predict8x8 = vp9_bilinear_predict8x8_sse2 ; 596 if (flags & HAS_SSE2) vp9_bilinear_predict8x8 = vp9_bilinear_predict8x8_sse2 ;
597 } 597 }
598 #endif 598 #endif
599 #endif 599 #endif
OLDNEW
« no previous file with comments | « source/config/win/ia32/vp8_rtcd.h ('k') | source/config/win/ia32/vpx_scale_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698