Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-06 17:43:38 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-08-06 17:50:54 +0400
commit305f72aee77bc36d1da9feaec42f9ddcdc9b0689 (patch)
tree27518b8c975f62d9a102837f29c1c8ab67d3ef03 /libavcodec/pixblockdsp_template.c
parent6b1df5544e8df9ad95512c638df2580856389fae (diff)
avcodec: Change get_pixels() to ptrdiff_t linesize
Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/pixblockdsp_template.c')
-rw-r--r--libavcodec/pixblockdsp_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pixblockdsp_template.c b/libavcodec/pixblockdsp_template.c
index 3aeddf526c..d1e91022a7 100644
--- a/libavcodec/pixblockdsp_template.c
+++ b/libavcodec/pixblockdsp_template.c
@@ -19,7 +19,7 @@
#include "bit_depth_template.c"
static void FUNCC(get_pixels)(int16_t *av_restrict block, const uint8_t *_pixels,
- int line_size)
+ ptrdiff_t line_size)
{
const pixel *pixels = (const pixel *) _pixels;
int i;