diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-03-26 19:06:29 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-27 23:09:10 +0100 |
commit | cb11b9e89e152ed4db22e5ad0349b63fac02101e (patch) | |
tree | 7b112316e3024a602ca62e0fa241ed3e457fe6c6 /libavcodec/dnxhdenc.h | |
parent | 72bff8da479a0ab61444474cda266c883e7928d6 (diff) | |
download | ffmpeg-cb11b9e89e152ed4db22e5ad0349b63fac02101e.tar.gz |
dnxhdenc: make get_pixel_8x4_sym accept ptrdiff_t as stride
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Reviewed-by: "Ronald S. Bultje" <rsbultje@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dnxhdenc.h')
-rw-r--r-- | libavcodec/dnxhdenc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhdenc.h b/libavcodec/dnxhdenc.h index 110b0ad9e2..52083be44b 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); |