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

Side by Side Diff: source/libvpx/vp9/common/vp9_rtcd_defs.pl

Issue 800493003: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Keep vp9_iht8x8_add_neon disabled because of http://llvm.org/bugs/show_bug.cgi?id=22178 Created 5 years, 11 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
« no previous file with comments | « source/libvpx/vp9/common/vp9_onyxc_int.h ('k') | source/libvpx/vp9/decoder/vp9_decodeframe.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
791 791
792 792
793 # variance 793 # variance
794 add_proto qw/unsigned int vp9_variance32x16/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 794 add_proto qw/unsigned int vp9_variance32x16/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
795 specialize qw/vp9_variance32x16 avx2/, "$sse2_x86inc"; 795 specialize qw/vp9_variance32x16 avx2/, "$sse2_x86inc";
796 796
797 add_proto qw/unsigned int vp9_variance16x32/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 797 add_proto qw/unsigned int vp9_variance16x32/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
798 specialize qw/vp9_variance16x32/, "$sse2_x86inc"; 798 specialize qw/vp9_variance16x32/, "$sse2_x86inc";
799 799
800 add_proto qw/unsigned int vp9_variance64x32/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 800 add_proto qw/unsigned int vp9_variance64x32/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
801 specialize qw/vp9_variance64x32 avx2/, "$sse2_x86inc"; 801 specialize qw/vp9_variance64x32 avx2 neon/, "$sse2_x86inc";
802 802
803 add_proto qw/unsigned int vp9_variance32x64/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 803 add_proto qw/unsigned int vp9_variance32x64/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
804 specialize qw/vp9_variance32x64/, "$sse2_x86inc"; 804 specialize qw/vp9_variance32x64 neon/, "$sse2_x86inc";
805 805
806 add_proto qw/unsigned int vp9_variance32x32/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 806 add_proto qw/unsigned int vp9_variance32x32/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
807 specialize qw/vp9_variance32x32 avx2 neon/, "$sse2_x86inc"; 807 specialize qw/vp9_variance32x32 avx2 neon/, "$sse2_x86inc";
808 808
809 add_proto qw/unsigned int vp9_variance64x64/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 809 add_proto qw/unsigned int vp9_variance64x64/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
810 specialize qw/vp9_variance64x64 avx2/, "$sse2_x86inc"; 810 specialize qw/vp9_variance64x64 avx2 neon/, "$sse2_x86inc";
811 811
812 add_proto qw/unsigned int vp9_variance16x16/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 812 add_proto qw/unsigned int vp9_variance16x16/, "const uint8_t *src_ptr, int sourc e_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
813 specialize qw/vp9_variance16x16 avx2 neon/, "$sse2_x86inc"; 813 specialize qw/vp9_variance16x16 avx2 neon/, "$sse2_x86inc";
814 814
815 add_proto qw/unsigned int vp9_variance16x8/, "const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 815 add_proto qw/unsigned int vp9_variance16x8/, "const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
816 specialize qw/vp9_variance16x8/, "$sse2_x86inc"; 816 specialize qw/vp9_variance16x8/, "$sse2_x86inc";
817 817
818 add_proto qw/unsigned int vp9_variance8x16/, "const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 818 add_proto qw/unsigned int vp9_variance8x16/, "const uint8_t *src_ptr, int source _stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
819 specialize qw/vp9_variance8x16/, "$sse2_x86inc"; 819 specialize qw/vp9_variance8x16/, "$sse2_x86inc";
820 820
821 add_proto qw/unsigned int vp9_variance8x8/, "const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 821 add_proto qw/unsigned int vp9_variance8x8/, "const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
822 specialize qw/vp9_variance8x8 neon/, "$sse2_x86inc"; 822 specialize qw/vp9_variance8x8 neon/, "$sse2_x86inc";
823 823
824 add_proto qw/void vp9_get8x8var/, "const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum"; 824 add_proto qw/void vp9_get8x8var/, "const uint8_t *src_ptr, int source_stride, co nst uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum";
825 specialize qw/vp9_get8x8var neon/, "$sse2_x86inc"; 825 specialize qw/vp9_get8x8var neon/, "$sse2_x86inc";
826 826
827 add_proto qw/void vp9_get16x16var/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum"; 827 add_proto qw/void vp9_get16x16var/, "const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse, int *sum";
828 specialize qw/vp9_get16x16var avx2 neon/, "$sse2_x86inc"; 828 specialize qw/vp9_get16x16var avx2 neon/, "$sse2_x86inc";
829 829
830 add_proto qw/unsigned int vp9_variance8x4/, "const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 830 add_proto qw/unsigned int vp9_variance8x4/, "const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
831 specialize qw/vp9_variance8x4/, "$sse2_x86inc"; 831 specialize qw/vp9_variance8x4/, "$sse2_x86inc";
832 832
833 add_proto qw/unsigned int vp9_variance4x8/, "const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 833 add_proto qw/unsigned int vp9_variance4x8/, "const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
834 specialize qw/vp9_variance4x8/, "$sse2_x86inc"; 834 specialize qw/vp9_variance4x8/, "$sse2_x86inc";
835 835
836 add_proto qw/unsigned int vp9_variance4x4/, "const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse"; 836 add_proto qw/unsigned int vp9_variance4x4/, "const uint8_t *src_ptr, int source_ stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse";
837 specialize qw/vp9_variance4x4/, "$sse2_x86inc"; 837 specialize qw/vp9_variance4x4/, "$sse2_x86inc";
838 838
839 add_proto qw/unsigned int vp9_sub_pixel_variance64x64/, "const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_s tride, unsigned int *sse"; 839 add_proto qw/unsigned int vp9_sub_pixel_variance64x64/, "const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_s tride, unsigned int *sse";
840 specialize qw/vp9_sub_pixel_variance64x64 avx2/, "$sse2_x86inc", "$ssse3_x86inc" ; 840 specialize qw/vp9_sub_pixel_variance64x64 avx2 neon/, "$sse2_x86inc", "$ssse3_x8 6inc";
841 841
842 add_proto qw/unsigned int vp9_sub_pixel_avg_variance64x64/, "const uint8_t *src_ ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int r ef_stride, unsigned int *sse, const uint8_t *second_pred"; 842 add_proto qw/unsigned int vp9_sub_pixel_avg_variance64x64/, "const uint8_t *src_ ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int r ef_stride, unsigned int *sse, const uint8_t *second_pred";
843 specialize qw/vp9_sub_pixel_avg_variance64x64 avx2/, "$sse2_x86inc", "$ssse3_x86 inc"; 843 specialize qw/vp9_sub_pixel_avg_variance64x64 avx2/, "$sse2_x86inc", "$ssse3_x86 inc";
844 844
845 add_proto qw/unsigned int vp9_sub_pixel_variance32x64/, "const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_s tride, unsigned int *sse"; 845 add_proto qw/unsigned int vp9_sub_pixel_variance32x64/, "const uint8_t *src_ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int ref_s tride, unsigned int *sse";
846 specialize qw/vp9_sub_pixel_variance32x64/, "$sse2_x86inc", "$ssse3_x86inc"; 846 specialize qw/vp9_sub_pixel_variance32x64/, "$sse2_x86inc", "$ssse3_x86inc";
847 847
848 add_proto qw/unsigned int vp9_sub_pixel_avg_variance32x64/, "const uint8_t *src_ ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int r ef_stride, unsigned int *sse, const uint8_t *second_pred"; 848 add_proto qw/unsigned int vp9_sub_pixel_avg_variance32x64/, "const uint8_t *src_ ptr, int source_stride, int xoffset, int yoffset, const uint8_t *ref_ptr, int r ef_stride, unsigned int *sse, const uint8_t *second_pred";
849 specialize qw/vp9_sub_pixel_avg_variance32x64/, "$sse2_x86inc", "$ssse3_x86inc"; 849 specialize qw/vp9_sub_pixel_avg_variance32x64/, "$sse2_x86inc", "$ssse3_x86inc";
850 850
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after
1913 1913
1914 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" ; 1914 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" ;
1915 specialize qw/vp9_highbd_temporal_filter_apply/; 1915 specialize qw/vp9_highbd_temporal_filter_apply/;
1916 1916
1917 } 1917 }
1918 # End vp9_high encoder functions 1918 # End vp9_high encoder functions
1919 1919
1920 } 1920 }
1921 # end encoder functions 1921 # end encoder functions
1922 1; 1922 1;
OLDNEW
« no previous file with comments | « source/libvpx/vp9/common/vp9_onyxc_int.h ('k') | source/libvpx/vp9/decoder/vp9_decodeframe.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698