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

Side by Side Diff: third_party/libvpx/source/config/linux/mips64el/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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 74
74 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type); 75 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type);
75 #define vp9_iht8x8_64_add vp9_iht8x8_64_add_c 76 #define vp9_iht8x8_64_add vp9_iht8x8_64_add_c
76 77
77 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); 78 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);
78 #define vp9_quantize_fp vp9_quantize_fp_c 79 #define vp9_quantize_fp vp9_quantize_fp_c
79 80
80 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); 81 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);
81 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c 82 #define vp9_quantize_fp_32x32 vp9_quantize_fp_32x32_c
82 83
83 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); 84 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);
84 #define vp9_scale_and_extend_frame vp9_scale_and_extend_frame_c 85 #define vp9_scale_and_extend_frame vp9_scale_and_extend_frame_c
85 86
86 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); 87 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);
87 #define vp9_temporal_filter_apply vp9_temporal_filter_apply_c 88 #define vp9_temporal_filter_apply vp9_temporal_filter_apply_c
88 89
89 void vp9_rtcd(void); 90 void vp9_rtcd(void);
90 91
91 #include "vpx_config.h" 92 #include "vpx_config.h"
92 93
93 #ifdef RTCD_C 94 #ifdef RTCD_C
94 static void setup_rtcd_internal(void) 95 static void setup_rtcd_internal(void)
95 { 96 {
96 } 97 }
97 #endif 98 #endif
98 99
99 #ifdef __cplusplus 100 #ifdef __cplusplus
100 } // extern "C" 101 } // extern "C"
101 #endif 102 #endif
102 103
103 #endif 104 #endif
OLDNEW
« no previous file with comments | « third_party/libvpx/source/config/linux/ia32/vp9_rtcd.h ('k') | third_party/libvpx/source/config/linux/mipsel/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698