diff options
author | James Almer <jamrial@gmail.com> | 2017-03-21 15:57:07 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-03-21 15:57:07 -0300 |
commit | a0478341f34be544e28b83ecfd768922de309416 (patch) | |
tree | b9fd46671cb8d9f8a1e752d33b56506d8eef6b62 /libavcodec/mss34dsp.h | |
parent | b16752f694a5b580a8188fa2ef428a6afbb229d7 (diff) | |
parent | 15b4f494fc6bddb8178fdb5aed18b420efc75e22 (diff) | |
download | ffmpeg-a0478341f34be544e28b83ecfd768922de309416.tar.gz |
Merge commit '15b4f494fc6bddb8178fdb5aed18b420efc75e22'
* commit '15b4f494fc6bddb8178fdb5aed18b420efc75e22':
mss*: Change type of array stride parameters to ptrdiff_t
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/mss34dsp.h')
-rw-r--r-- | libavcodec/mss34dsp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mss34dsp.h b/libavcodec/mss34dsp.h index 2f9827d3e5..29c61e34f3 100644 --- a/libavcodec/mss34dsp.h +++ b/libavcodec/mss34dsp.h @@ -22,6 +22,7 @@ #ifndef AVCODEC_MSS34DSP_H #define AVCODEC_MSS34DSP_H +#include <stddef.h> #include <stdint.h> /** @@ -40,6 +41,6 @@ void ff_mss34_gen_quant_mat(uint16_t *qmat, int quality, int luma); * @param stride output plane stride * @param block block to transform and output */ -void ff_mss34_dct_put(uint8_t *dst, int stride, int *block); +void ff_mss34_dct_put(uint8_t *dst, ptrdiff_t stride, int *block); #endif /* AVCODEC_MSS34DSP_H */ |