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

Side by Side Diff: third_party/libvpx/source/config/win/ia32/vp9_rtcd.h

Issue 2886063002: Roll src/third_party/libvpx/source/libvpx/ ac8f58f6a..31cb852a9 (10 commits) (Closed)
Patch Set: Created 3 years, 7 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 VP9_RTCD_H_ 1 #ifndef VP9_RTCD_H_
2 #define VP9_RTCD_H_ 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 #include "vp9/common/vp9_common.h" 15 #include "vp9/common/vp9_common.h"
16 #include "vp9/common/vp9_enums.h" 16 #include "vp9/common/vp9_enums.h"
17 #include "vp9/common/vp9_filter.h"
17 18
18 struct macroblockd; 19 struct macroblockd;
19 20
20 /* Encoder forward decls */ 21 /* Encoder forward decls */
21 struct macroblock; 22 struct macroblock;
22 struct vp9_variance_vtable; 23 struct vp9_variance_vtable;
23 struct search_site_config; 24 struct search_site_config;
24 struct mv; 25 struct mv;
25 union int_mv; 26 union int_mv;
26 struct yv12_buffer_config; 27 struct yv12_buffer_config;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 void vp9_iht8x8_64_add_sse2(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 135 void vp9_iht8x8_64_add_sse2(const tran_low_t *input, uint8_t *dest, int stride, int tx_type);
135 RTCD_EXTERN void (*vp9_iht8x8_64_add)(const tran_low_t *input, uint8_t *dest, in t stride, int tx_type); 136 RTCD_EXTERN void (*vp9_iht8x8_64_add)(const tran_low_t *input, uint8_t *dest, in t stride, int tx_type);
136 137
137 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_ block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_pt r, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan); 138 void vp9_quantize_fp_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_ block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff_pt r, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
138 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int sk ip_block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff _ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, co nst int16_t *scan, const int16_t *iscan); 139 void vp9_quantize_fp_sse2(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int sk ip_block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qcoeff _ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, co nst int16_t *scan, const int16_t *iscan);
139 RTCD_EXTERN void (*vp9_quantize_fp)(const tran_low_t *coeff_ptr, intptr_t n_coef fs, int skip_block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low _t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *e ob_ptr, const int16_t *scan, const int16_t *iscan); 140 RTCD_EXTERN void (*vp9_quantize_fp)(const tran_low_t *coeff_ptr, intptr_t n_coef fs, int skip_block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low _t *qcoeff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *e ob_ptr, const int16_t *scan, const int16_t *iscan);
140 141
141 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qco eff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan); 142 void vp9_quantize_fp_32x32_c(const tran_low_t *coeff_ptr, intptr_t n_coeffs, int skip_block, const int16_t *round_ptr, const int16_t *quant_ptr, tran_low_t *qco eff_ptr, tran_low_t *dqcoeff_ptr, const int16_t *dequant_ptr, uint16_t *eob_ptr, const int16_t *scan, const int16_t *iscan);
142 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c 143 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c
143 144
144 void vp9_scale_and_extend_frame_c(const struct yv12_buffer_config *src, struct y v12_buffer_config *dst, uint8_t filter_type, int phase_scaler); 145 void vp9_scale_and_extend_frame_c(const struct yv12_buffer_config *src, struct y v12_buffer_config *dst, INTERP_FILTER filter_type, int phase_scaler);
145 void vp9_scale_and_extend_frame_ssse3(const struct yv12_buffer_config *src, stru ct yv12_buffer_config *dst, uint8_t filter_type, int phase_scaler); 146 void vp9_scale_and_extend_frame_ssse3(const struct yv12_buffer_config *src, stru ct yv12_buffer_config *dst, INTERP_FILTER filter_type, int phase_scaler);
146 RTCD_EXTERN void (*vp9_scale_and_extend_frame)(const struct yv12_buffer_config * src, struct yv12_buffer_config *dst, uint8_t filter_type, int phase_scaler); 147 RTCD_EXTERN void (*vp9_scale_and_extend_frame)(const struct yv12_buffer_config * src, struct yv12_buffer_config *dst, INTERP_FILTER filter_type, int phase_scaler );
147 148
148 void vp9_temporal_filter_apply_c(const uint8_t *frame1, unsigned int stride, con st uint8_t *frame2, unsigned int block_width, unsigned int block_height, int str ength, int filter_weight, uint32_t *accumulator, uint16_t *count); 149 void vp9_temporal_filter_apply_c(const uint8_t *frame1, unsigned int stride, con st uint8_t *frame2, unsigned int block_width, unsigned int block_height, int str ength, int filter_weight, uint32_t *accumulator, uint16_t *count);
149 void vp9_temporal_filter_apply_sse4_1(const uint8_t *frame1, unsigned int stride , const uint8_t *frame2, unsigned int block_width, unsigned int block_height, in t strength, int filter_weight, uint32_t *accumulator, uint16_t *count); 150 void vp9_temporal_filter_apply_sse4_1(const uint8_t *frame1, unsigned int stride , const uint8_t *frame2, unsigned int block_width, unsigned int block_height, in t strength, int filter_weight, uint32_t *accumulator, uint16_t *count);
150 RTCD_EXTERN void (*vp9_temporal_filter_apply)(const uint8_t *frame1, unsigned in t stride, const uint8_t *frame2, unsigned int block_width, unsigned int block_he ight, int strength, int filter_weight, uint32_t *accumulator, uint16_t *count); 151 RTCD_EXTERN void (*vp9_temporal_filter_apply)(const uint8_t *frame1, unsigned in t stride, const uint8_t *frame2, unsigned int block_width, unsigned int block_he ight, int strength, int filter_weight, uint32_t *accumulator, uint16_t *count);
151 152
152 void vp9_rtcd(void); 153 void vp9_rtcd(void);
153 154
154 #ifdef RTCD_C 155 #ifdef RTCD_C
155 #include "vpx_ports/x86.h" 156 #include "vpx_ports/x86.h"
156 static void setup_rtcd_internal(void) 157 static void setup_rtcd_internal(void)
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 vp9_temporal_filter_apply = vp9_temporal_filter_apply_c; 201 vp9_temporal_filter_apply = vp9_temporal_filter_apply_c;
201 if (flags & HAS_SSE4_1) vp9_temporal_filter_apply = vp9_temporal_filter_appl y_sse4_1; 202 if (flags & HAS_SSE4_1) vp9_temporal_filter_apply = vp9_temporal_filter_appl y_sse4_1;
202 } 203 }
203 #endif 204 #endif
204 205
205 #ifdef __cplusplus 206 #ifdef __cplusplus
206 } // extern "C" 207 } // extern "C"
207 #endif 208 #endif
208 209
209 #endif 210 #endif
OLDNEW
« no previous file with comments | « third_party/libvpx/source/config/vpx_version.h ('k') | third_party/libvpx/source/config/win/x64/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698