| OLD | NEW |
| 1 sub vp9_common_forward_decls() { | 1 sub vp9_common_forward_decls() { |
| 2 print <<EOF | 2 print <<EOF |
| 3 /* | 3 /* |
| 4 * VP9 | 4 * VP9 |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #include "vpx/vpx_integer.h" | 7 #include "vpx/vpx_integer.h" |
| 8 #include "vp9/common/vp9_common.h" | 8 #include "vp9/common/vp9_common.h" |
| 9 #include "vp9/common/vp9_enums.h" | 9 #include "vp9/common/vp9_enums.h" |
| 10 | 10 |
| (...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1108 | 1108 |
| 1109 add_proto qw/unsigned int vp9_avg_4x4/, "const uint8_t *, int p"; | 1109 add_proto qw/unsigned int vp9_avg_4x4/, "const uint8_t *, int p"; |
| 1110 specialize qw/vp9_avg_4x4 sse2/; | 1110 specialize qw/vp9_avg_4x4 sse2/; |
| 1111 | 1111 |
| 1112 add_proto qw/void vp9_int_pro_row/, "int16_t *hbuf, uint8_t const *ref, const in
t ref_stride, const int height"; | 1112 add_proto qw/void vp9_int_pro_row/, "int16_t *hbuf, uint8_t const *ref, const in
t ref_stride, const int height"; |
| 1113 specialize qw/vp9_int_pro_row sse2/; | 1113 specialize qw/vp9_int_pro_row sse2/; |
| 1114 | 1114 |
| 1115 add_proto qw/int16_t vp9_int_pro_col/, "uint8_t const *ref, const int width"; | 1115 add_proto qw/int16_t vp9_int_pro_col/, "uint8_t const *ref, const int width"; |
| 1116 specialize qw/vp9_int_pro_col sse2/; | 1116 specialize qw/vp9_int_pro_col sse2/; |
| 1117 | 1117 |
| 1118 add_proto qw/int vp9_vector_sad/, "int16_t const *ref, int16_t const *src, const
int width"; | 1118 add_proto qw/int vp9_vector_var/, "int16_t const *ref, int16_t const *src, const
int bwl"; |
| 1119 specialize qw/vp9_vector_sad sse2/; | 1119 specialize qw/vp9_vector_var sse2/; |
| 1120 | 1120 |
| 1121 if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { | 1121 if (vpx_config("CONFIG_VP9_HIGHBITDEPTH") eq "yes") { |
| 1122 add_proto qw/unsigned int vp9_highbd_avg_8x8/, "const uint8_t *, int p"; | 1122 add_proto qw/unsigned int vp9_highbd_avg_8x8/, "const uint8_t *, int p"; |
| 1123 specialize qw/vp9_highbd_avg_8x8/; | 1123 specialize qw/vp9_highbd_avg_8x8/; |
| 1124 add_proto qw/unsigned int vp9_highbd_avg_4x4/, "const uint8_t *, int p"; | 1124 add_proto qw/unsigned int vp9_highbd_avg_4x4/, "const uint8_t *, int p"; |
| 1125 specialize qw/vp9_highbd_avg_4x4/; | 1125 specialize qw/vp9_highbd_avg_4x4/; |
| 1126 } | 1126 } |
| 1127 | 1127 |
| 1128 # ENCODEMB INVOKE | 1128 # ENCODEMB INVOKE |
| 1129 | 1129 |
| (...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1928 | 1928 |
| 1929 add_proto qw/void vp9_highbd_temporal_filter_apply/, "uint8_t *frame1, unsigne
d int stride, uint8_t *frame2, unsigned int block_width, unsigned int block_heig
ht, int strength, int filter_weight, unsigned int *accumulator, uint16_t *count"
; | 1929 add_proto qw/void vp9_highbd_temporal_filter_apply/, "uint8_t *frame1, unsigne
d int stride, uint8_t *frame2, unsigned int block_width, unsigned int block_heig
ht, int strength, int filter_weight, unsigned int *accumulator, uint16_t *count"
; |
| 1930 specialize qw/vp9_highbd_temporal_filter_apply/; | 1930 specialize qw/vp9_highbd_temporal_filter_apply/; |
| 1931 | 1931 |
| 1932 } | 1932 } |
| 1933 # End vp9_high encoder functions | 1933 # End vp9_high encoder functions |
| 1934 | 1934 |
| 1935 } | 1935 } |
| 1936 # end encoder functions | 1936 # end encoder functions |
| 1937 1; | 1937 1; |
| OLD | NEW |