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>2013-03-13 17:31:39 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-13 17:35:48 +0400
commit019b378d90e04b77e1ae075696eafc3f44d21e27 (patch)
treea82f1f14e8a84b195cba4f2309e72b5a79fbd776 /libavcodec/vc1dsp.h
parentdb4e4f766c0739f08eb66696395a66e47378189c (diff)
vc1: fix int/ptrdiff_t mismatches
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1dsp.h')
-rw-r--r--libavcodec/vc1dsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1dsp.h b/libavcodec/vc1dsp.h
index 6540eff0b8..851e40c735 100644
--- a/libavcodec/vc1dsp.h
+++ b/libavcodec/vc1dsp.h
@@ -31,7 +31,7 @@
#include "dsputil.h"
#include "h264chroma.h"
-typedef void (*vc1op_pixels_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, int line_size, int h);
+typedef void (*vc1op_pixels_func)(uint8_t *block/*align width (8 or 16)*/, const uint8_t *pixels/*align 1*/, ptrdiff_t line_size, int h);
typedef struct VC1DSPContext {
/* vc1 functions */