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

Side by Side Diff: source/libvpx/vp8/common/rtcd_defs.pl

Issue 375983002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
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
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;
OLDNEW
« no previous file with comments | « source/libvpx/vp8/common/postproc.c ('k') | source/libvpx/vp8/encoder/arm/neon/denoising_neon.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698