[x265] [PATCH] Set up the function pointers for luma vertical filters

nabajit at multicorewareinc.com nabajit at multicorewareinc.com
Thu Oct 31 17:07:50 CET 2013


# HG changeset patch
# User Nabajit Deka
# Date 1383235660 -19800
#      Thu Oct 31 21:37:40 2013 +0530
# Node ID 9ae563379b0fb57e5701fde2932277dddea4598a
# Parent  b3a3131e1c32e7cd4cef833455ca8c541307f5e1
Set up the function pointers for luma vertical filters.

diff -r b3a3131e1c32 -r 9ae563379b0f source/common/x86/asm-primitives.cpp
--- a/source/common/x86/asm-primitives.cpp	Thu Oct 31 21:34:09 2013 +0530
+++ b/source/common/x86/asm-primitives.cpp	Thu Oct 31 21:37:40 2013 +0530
@@ -157,7 +157,8 @@
 
 
 #define SETUP_LUMA_FUNC_DEF(W, H, cpu) \
-    p.luma_hpp[LUMA_ ## W ## x ## H] = x265_interp_8tap_horiz_pp_ ## W ## x ## H ## cpu
+    p.luma_hpp[LUMA_ ## W ## x ## H] = x265_interp_8tap_horiz_pp_ ## W ## x ## H ## cpu;\
+    p.luma_vpp[LUMA_ ## W ## x ## H] = x265_interp_8tap_vert_pp_ ## W ## x ## H ## cpu
 
 #define LUMA_FILTERS(cpu) \
     SETUP_LUMA_FUNC_DEF(4,   4, cpu); \


More information about the x265-devel mailing list