[x265] [PATCH 4 of 4] Function declarations for modified luma_hps and chroma_hps functions

nabajit at multicorewareinc.com nabajit at multicorewareinc.com
Wed Dec 4 13:49:51 CET 2013


# HG changeset patch
# User Nabajit Deka
# Date 1386161019 -19800
#      Wed Dec 04 18:13:39 2013 +0530
# Node ID 51151520faa3cbb79af8c9534eeb289d60ac1b95
# Parent  b0602bd77013c5c590d788259b2fdd9546374d4d
Function declarations for modified luma_hps and chroma_hps functions.

diff -r b0602bd77013 -r 51151520faa3 source/common/x86/ipfilter8.h
--- a/source/common/x86/ipfilter8.h	Wed Dec 04 18:10:33 2013 +0530
+++ b/source/common/x86/ipfilter8.h	Wed Dec 04 18:13:39 2013 +0530
@@ -26,7 +26,7 @@
 
 #define SETUP_CHROMA_FUNC_DEF(W, H, cpu) \
     void x265_interp_4tap_horiz_pp_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, pixel * dst, intptr_t dstStride, int coeffIdx); \
-    void x265_interp_4tap_horiz_ps_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, int16_t * dst, intptr_t dstStride, int coeffIdx); \
+    void x265_interp_4tap_horiz_ps_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, int16_t * dst, intptr_t dstStride, int coeffIdx, int isRowExt); \
     void x265_interp_4tap_vert_pp_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, pixel * dst, intptr_t dstStride, int coeffIdx); \
     void x265_interp_4tap_vert_ps_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, int16_t * dst, intptr_t dstStride, int coeffIdx);
 
@@ -58,7 +58,7 @@
 
 #define SETUP_LUMA_FUNC_DEF(W, H, cpu) \
     void x265_interp_8tap_horiz_pp_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, pixel * dst, intptr_t dstStride, int coeffIdx); \
-    void x265_interp_8tap_horiz_ps_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, int16_t * dst, intptr_t dstStride, int coeffIdx); \
+    void x265_interp_8tap_horiz_ps_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, int16_t * dst, intptr_t dstStride, int coeffIdx, int isRowExt); \
     void x265_interp_8tap_vert_pp_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, pixel * dst, intptr_t dstStride, int coeffIdx); \
     void x265_interp_8tap_vert_ps_ ## W ## x ## H ## cpu(pixel * src, intptr_t srcStride, int16_t * dst, intptr_t dstStride, int coeffIdx);
 


More information about the x265-devel mailing list