diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-09-07 17:08:15 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-09-29 17:54:23 +0200 |
commit | a339e919cad1ab0125948f0dd9d49f6cb590db89 (patch) | |
tree | 1746791dcd090211317c0918480f4d00e192aac3 /libavcodec/eaidct.h | |
parent | ba479f3daafc7e4359ec1212164569ebe59f0bb7 (diff) | |
download | ffmpeg-a339e919cad1ab0125948f0dd9d49f6cb590db89.tar.gz |
ea: Change type of array stride parameters to ptrdiff_t
ptrdiff_t is the correct type for array strides and similar.
Diffstat (limited to 'libavcodec/eaidct.h')
-rw-r--r-- | libavcodec/eaidct.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/eaidct.h b/libavcodec/eaidct.h index e78de04178..395a8aefba 100644 --- a/libavcodec/eaidct.h +++ b/libavcodec/eaidct.h @@ -19,8 +19,9 @@ #ifndef AVCODEC_EAIDCT_H #define AVCODEC_EAIDCT_H +#include <stddef.h> #include <stdint.h> -void ff_ea_idct_put_c(uint8_t *dest, int linesize, int16_t *block); +void ff_ea_idct_put_c(uint8_t *dest, ptrdiff_t linesize, int16_t *block); #endif /* AVCODEC_EAIDCT_H */ |