diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-06 15:43:38 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-06 15:50:54 +0200 |
commit | 305f72aee77bc36d1da9feaec42f9ddcdc9b0689 (patch) | |
tree | 27518b8c975f62d9a102837f29c1c8ab67d3ef03 /libavcodec/dv.h | |
parent | 6b1df5544e8df9ad95512c638df2580856389fae (diff) | |
download | ffmpeg-305f72aee77bc36d1da9feaec42f9ddcdc9b0689.tar.gz |
avcodec: Change get_pixels() to ptrdiff_t linesize
Found-by: ubitux
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv.h')
-rw-r--r-- | libavcodec/dv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.h b/libavcodec/dv.h index 14cfbce194..aa761dc751 100644 --- a/libavcodec/dv.h +++ b/libavcodec/dv.h @@ -45,7 +45,7 @@ typedef struct DVVideoContext { uint8_t dv_zigzag[2][64]; - void (*get_pixels)(int16_t *block, const uint8_t *pixels, int line_size); + void (*get_pixels)(int16_t *block, const uint8_t *pixels, ptrdiff_t line_size); void (*fdct[2])(int16_t *block); void (*idct_put[2])(uint8_t *dest, int line_size, int16_t *block); me_cmp_func ildct_cmp; |