[FFmpeg-cvslog] dnxhdenc: make get_pixel_8x4_sym accept ptrdiff_t as stride

Timothy Gu git at videolan.org
Thu Mar 27 23:40:07 CET 2014


ffmpeg | branch: master | Timothy Gu <timothygu99 at gmail.com> | Wed Mar 26 19:06:29 2014 -0700| [cb11b9e89e152ed4db22e5ad0349b63fac02101e] | committer: Michael Niedermayer

dnxhdenc: make get_pixel_8x4_sym accept ptrdiff_t as stride

Signed-off-by: Timothy Gu <timothygu99 at gmail.com>
Reviewed-by: "Ronald S. Bultje" <rsbultje at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cb11b9e89e152ed4db22e5ad0349b63fac02101e
---

 libavcodec/dnxhdenc.c     |    4 ++--
 libavcodec/dnxhdenc.h     |    2 +-
 libavcodec/x86/dnxhdenc.c |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
index fb37a9d..4fda9ee 100644
--- a/libavcodec/dnxhdenc.c
+++ b/libavcodec/dnxhdenc.c
@@ -52,7 +52,7 @@ static const AVClass dnxhd_class = {
 
 #define LAMBDA_FRAC_BITS 10
 
-static void dnxhd_8bit_get_pixels_8x4_sym(int16_t *av_restrict block, const uint8_t *pixels, int line_size)
+static void dnxhd_8bit_get_pixels_8x4_sym(int16_t *av_restrict block, const uint8_t *pixels, ptrdiff_t line_size)
 {
     int i;
     for (i = 0; i < 4; i++) {
@@ -69,7 +69,7 @@ static void dnxhd_8bit_get_pixels_8x4_sym(int16_t *av_restrict block, const uint
     memcpy(block + 24, block - 32, sizeof(*block) * 8);
 }
 
-static av_always_inline void dnxhd_10bit_get_pixels_8x4_sym(int16_t *av_restrict block, const uint8_t *pixels, int line_size)
+static av_always_inline void dnxhd_10bit_get_pixels_8x4_sym(int16_t *av_restrict block, const uint8_t *pixels, ptrdiff_t line_size)
 {
     int i;
     const uint16_t* pixels16 = (const uint16_t*)pixels;
diff --git a/libavcodec/dnxhdenc.h b/libavcodec/dnxhdenc.h
index 110b0ad..52083be 100644
--- a/libavcodec/dnxhdenc.h
+++ b/libavcodec/dnxhdenc.h
@@ -89,7 +89,7 @@ typedef struct DNXHDEncContext {
     RCCMPEntry *mb_cmp;
     RCEntry   (*mb_rc)[8160];
 
-    void (*get_pixels_8x4_sym)(int16_t * /*align 16*/, const uint8_t *, int);
+    void (*get_pixels_8x4_sym)(int16_t * /*align 16*/, const uint8_t *, ptrdiff_t);
 } DNXHDEncContext;
 
 void ff_dnxhdenc_init_x86(DNXHDEncContext *ctx);
diff --git a/libavcodec/x86/dnxhdenc.c b/libavcodec/x86/dnxhdenc.c
index c7e776a..b4d9f02 100644
--- a/libavcodec/x86/dnxhdenc.c
+++ b/libavcodec/x86/dnxhdenc.c
@@ -28,7 +28,7 @@
 
 #if HAVE_SSE2_INLINE
 
-static void get_pixels_8x4_sym_sse2(int16_t *block, const uint8_t *pixels, int line_size)
+static void get_pixels_8x4_sym_sse2(int16_t *block, const uint8_t *pixels, ptrdiff_t line_size)
 {
     __asm__ volatile(
         "pxor %%xmm5,      %%xmm5       \n\t"



More information about the ffmpeg-cvslog mailing list