[x265] [PATCH] replaced int with intptr_t for strides

praveen at multicorewareinc.com praveen at multicorewareinc.com
Wed Nov 20 13:51:56 CET 2013


# HG changeset patch
# User Praveen Tiwari
# Date 1384951903 -19800
# Node ID 77d97d720b654dd16de291df56aea33810960776
# Parent  14839d89530331e66ed150168617a814bd0ac4f5
replaced int with intptr_t for strides

diff -r 14839d895303 -r 77d97d720b65 source/common/pixel.cpp
--- a/source/common/pixel.cpp	Wed Nov 20 18:15:22 2013 +0530
+++ b/source/common/pixel.cpp	Wed Nov 20 18:21:43 2013 +0530
@@ -796,7 +796,7 @@
 }
 
 template<int bx, int by>
-void pixel_add_ps_c(pixel *a, int dstride, pixel *b0, int16_t *b1, int sstride0, int sstride1)
+void pixel_add_ps_c(pixel *a, intptr_t dstride, pixel *b0, int16_t *b1, intptr_t sstride0, intptr_t sstride1)
   {
     for (int y = 0; y < by; y++)
     {


More information about the x265-devel mailing list