diff options
author | James Almer <jamrial@gmail.com> | 2019-02-20 15:23:15 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-02-20 15:27:43 -0300 |
commit | d5d699ab6e6f8a8290748d107416fd5c19757a1b (patch) | |
tree | 572b7d91ee376f6fbb4d2a3c492d333a520ecea1 /libavcodec/x86 | |
parent | 5ca7eb36b7353f9e6af05a5a952eead5f6d326dd (diff) | |
download | ffmpeg-d5d699ab6e6f8a8290748d107416fd5c19757a1b.tar.gz |
avcodec/h264dsp: change loop filter stride argument to ptrdiff_t
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/h264dsp_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/h264dsp_init.c b/libavcodec/x86/h264dsp_init.c index 39f65c151f..08eb7ead44 100644 --- a/libavcodec/x86/h264dsp_init.c +++ b/libavcodec/x86/h264dsp_init.c @@ -101,13 +101,13 @@ void ff_h264_loop_filter_strength_mmxext(int16_t bS[2][4][4], uint8_t nnz[40], #define LF_FUNC(DIR, TYPE, DEPTH, OPT) \ void ff_deblock_ ## DIR ## _ ## TYPE ## _ ## DEPTH ## _ ## OPT(uint8_t *pix, \ - int stride, \ + ptrdiff_t stride, \ int alpha, \ int beta, \ int8_t *tc0); #define LF_IFUNC(DIR, TYPE, DEPTH, OPT) \ void ff_deblock_ ## DIR ## _ ## TYPE ## _ ## DEPTH ## _ ## OPT(uint8_t *pix, \ - int stride, \ + ptrdiff_t stride, \ int alpha, \ int beta); |