[x265] [PATCH] pixel.h, added asm function decleration for blockcopy_ps_c
praveen at multicorewareinc.com
praveen at multicorewareinc.com
Mon Nov 4 14:27:18 CET 2013
# HG changeset patch
# User Praveen Tiwari
# Date 1383571626 -19800
# Node ID 690639d8d50283feeb6d208ba70d350aa2b7b196
# Parent df730afcd6762d53a070265785d7fefc5ec8e1d9
pixel.h, added asm function decleration for blockcopy_ps_c
diff -r df730afcd676 -r 690639d8d502 source/common/x86/pixel.h
--- a/source/common/x86/pixel.h Mon Nov 04 18:45:30 2013 +0530
+++ b/source/common/x86/pixel.h Mon Nov 04 18:57:06 2013 +0530
@@ -272,6 +272,7 @@
#define SETUP_CHROMA_BLOCKCOPY_FUNC(W, H, cpu) \
void x265_blockcopy_pp_ ## W ## x ## H ## cpu(pixel *a, intptr_t stridea, pixel *b, intptr_t strideb);\
+ void x265_blockcopy_ps_ ## W ## x ## H ## cpu(pixel *a, intptr_t stridea, int16_t *b, intptr_t strideb);
#define CHROMA_BLOCKCOPY_DEF(cpu) \
SETUP_CHROMA_BLOCKCOPY_FUNC(4, 4, cpu); \
@@ -301,6 +302,7 @@
#define SETUP_LUMA_BLOCKCOPY_FUNC(W, H, cpu) \
void x265_blockcopy_pp_ ## W ## x ## H ## cpu(pixel *a, intptr_t stridea, pixel *b, intptr_t strideb);\
+ void x265_blockcopy_ps_ ## W ## x ## H ## cpu(pixel *a, intptr_t stridea, int16_t *b, intptr_t strideb);
#define LUMA_BLOCKCOPY_DEF(cpu) \
SETUP_LUMA_BLOCKCOPY_FUNC(4, 4, cpu); \
More information about the x265-devel
mailing list