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

Side by Side Diff: third_party/libvpx/source/config/nacl/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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 116
116 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 117 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type);
117 #define vp9_iht8x8_64_add vp9_iht8x8_64_add_c 118 #define vp9_iht8x8_64_add vp9_iht8x8_64_add_c
118 119
119 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); 120 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);
120 #define vp9_quantize_fp vp9_quantize_fp_c 121 #define vp9_quantize_fp vp9_quantize_fp_c
121 122
122 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); 123 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);
123 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c 124 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c
124 125
125 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); 126 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);
126 #define vp9_scale_and_extend_frame vp9_scale_and_extend_frame_c 127 #define vp9_scale_and_extend_frame vp9_scale_and_extend_frame_c
127 128
128 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); 129 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);
129 #define vp9_temporal_filter_apply vp9_temporal_filter_apply_c 130 #define vp9_temporal_filter_apply vp9_temporal_filter_apply_c
130 131
131 void vp9_rtcd(void); 132 void vp9_rtcd(void);
132 133
133 #include "vpx_config.h" 134 #include "vpx_config.h"
134 135
135 #ifdef RTCD_C 136 #ifdef RTCD_C
136 static void setup_rtcd_internal(void) 137 static void setup_rtcd_internal(void)
137 { 138 {
138 } 139 }
139 #endif 140 #endif
140 141
141 #ifdef __cplusplus 142 #ifdef __cplusplus
142 } // extern "C" 143 } // extern "C"
143 #endif 144 #endif
144 145
145 #endif 146 #endif
OLDNEW
« no previous file with comments | « third_party/libvpx/source/config/mac/x64/vp9_rtcd.h ('k') | third_party/libvpx/source/config/vpx_version.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698