diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-06-22 11:24:13 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-06-28 12:22:39 +0200 |
commit | b12a36170b1314a991cff0d618a96259d4b172f4 (patch) | |
tree | 4e33d5cb39b7cee91e5281e9c80444d32607311b /libavcodec/x86/aacpsdsp.asm | |
parent | ff0ecef624e933bc73e28c41823f4de04c274edd (diff) | |
download | ffmpeg-b12a36170b1314a991cff0d618a96259d4b172f4.tar.gz |
lavc/aacpsdsp: use ptrdiff_t for stride in hybrid_analysis
Diffstat (limited to 'libavcodec/x86/aacpsdsp.asm')
-rw-r--r-- | libavcodec/x86/aacpsdsp.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/aacpsdsp.asm b/libavcodec/x86/aacpsdsp.asm index a7327d39ce..4acd087c85 100644 --- a/libavcodec/x86/aacpsdsp.asm +++ b/libavcodec/x86/aacpsdsp.asm @@ -398,7 +398,7 @@ HYBRID_SYNTHESIS_DEINT ;******************************************************************* ;void ff_ps_hybrid_analysis_<opt>(float (*out)[2], float (*in)[2], ; const float (*filter)[8][2], -; int stride, int n); +; ptrdiff_t stride, int n); ;******************************************************************* %macro PS_HYBRID_ANALYSIS_LOOP 3 movu %1, [inq+mmsize*%3] @@ -438,7 +438,7 @@ cglobal ps_hybrid_analysis, 5, 5, 8, out, in, filter, stride, n %else %define MOVH movlps %endif - shl strided, 3 + shl strideq, 3 shl nd, 6 add filterq, nq neg nq |