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:
authorClément Bœsch <cboesch@gopro.com>2017-06-22 12:24:13 +0300
committerClément Bœsch <u@pkh.me>2017-06-28 13:22:39 +0300
commitb12a36170b1314a991cff0d618a96259d4b172f4 (patch)
tree4e33d5cb39b7cee91e5281e9c80444d32607311b /libavcodec/aacpsdsp_template.c
parentff0ecef624e933bc73e28c41823f4de04c274edd (diff)
lavc/aacpsdsp: use ptrdiff_t for stride in hybrid_analysis
Diffstat (limited to 'libavcodec/aacpsdsp_template.c')
-rw-r--r--libavcodec/aacpsdsp_template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacpsdsp_template.c b/libavcodec/aacpsdsp_template.c
index e639afa449..9e1a95c1a1 100644
--- a/libavcodec/aacpsdsp_template.c
+++ b/libavcodec/aacpsdsp_template.c
@@ -45,7 +45,7 @@ static void ps_mul_pair_single_c(INTFLOAT (*dst)[2], INTFLOAT (*src0)[2], INTFLO
static void ps_hybrid_analysis_c(INTFLOAT (*out)[2], INTFLOAT (*in)[2],
const INTFLOAT (*filter)[8][2],
- int stride, int n)
+ ptrdiff_t stride, int n)
{
int i, j;