| OLD | NEW |
| 1 sub vp8_common_forward_decls() { | 1 sub vp8_common_forward_decls() { |
| 2 print <<EOF | 2 print <<EOF |
| 3 /* | 3 /* |
| 4 * VP8 | 4 * VP8 |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 struct blockd; | 7 struct blockd; |
| 8 struct macroblockd; | 8 struct macroblockd; |
| 9 struct loop_filter_info; | 9 struct loop_filter_info; |
| 10 | 10 |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 add_proto qw/void vp8_yv12_copy_partial_frame/, "struct yv12_buffer_config *src_
ybc, struct yv12_buffer_config *dst_ybc"; | 545 add_proto qw/void vp8_yv12_copy_partial_frame/, "struct yv12_buffer_config *src_
ybc, struct yv12_buffer_config *dst_ybc"; |
| 546 specialize qw/vp8_yv12_copy_partial_frame neon_asm/; | 546 specialize qw/vp8_yv12_copy_partial_frame neon_asm/; |
| 547 $vp8_yv12_copy_partial_frame_neon_asm=vp8_yv12_copy_partial_frame_neon; | 547 $vp8_yv12_copy_partial_frame_neon_asm=vp8_yv12_copy_partial_frame_neon; |
| 548 | 548 |
| 549 # | 549 # |
| 550 # Denoiser filter | 550 # Denoiser filter |
| 551 # | 551 # |
| 552 if (vpx_config("CONFIG_TEMPORAL_DENOISING") eq "yes") { | 552 if (vpx_config("CONFIG_TEMPORAL_DENOISING") eq "yes") { |
| 553 add_proto qw/int vp8_denoiser_filter/, "unsigned char *mc_running_avg_y, int
mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char
*sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising"; | 553 add_proto qw/int vp8_denoiser_filter/, "unsigned char *mc_running_avg_y, int
mc_avg_y_stride, unsigned char *running_avg_y, int avg_y_stride, unsigned char
*sig, int sig_stride, unsigned int motion_magnitude, int increase_denoising"; |
| 554 specialize qw/vp8_denoiser_filter sse2 neon/; | 554 specialize qw/vp8_denoiser_filter sse2 neon/; |
| 555 add_proto qw/int vp8_denoiser_filter_uv/, "unsigned char *mc_running_avg, in
t mc_avg_stride, unsigned char *running_avg, int avg_stride, unsigned char *sig,
int sig_stride, unsigned int motion_magnitude, int increase_denoising"; |
| 556 specialize qw/vp8_denoiser_filter_uv sse2 neon/; |
| 557 |
| 555 } | 558 } |
| 556 | 559 |
| 557 # End of encoder only functions | 560 # End of encoder only functions |
| 558 } | 561 } |
| 559 1; | 562 1; |
| OLD | NEW |