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:
authorRonald S. Bultje <rsbultje@gmail.com>2013-01-21 10:26:42 +0400
committerRonald S. Bultje <rsbultje@gmail.com>2013-01-21 10:26:42 +0400
commit1768e43cebd646174bb1366611da575052989e0a (patch)
treed711f3a66653c1965eb8d126ca30aaa0006f00af /libavcodec/ppc
parent93af2734ee609133eaeca28329d7f13241dd411f (diff)
vorbisdsp: change block_size type from int to intptr_t.
This saves one instruction in the x86-64 assembly.
Diffstat (limited to 'libavcodec/ppc')
-rw-r--r--libavcodec/ppc/vorbisdsp_altivec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ppc/vorbisdsp_altivec.c b/libavcodec/ppc/vorbisdsp_altivec.c
index 07c232430f..d6b961c6e9 100644
--- a/libavcodec/ppc/vorbisdsp_altivec.c
+++ b/libavcodec/ppc/vorbisdsp_altivec.c
@@ -27,7 +27,7 @@
#if HAVE_ALTIVEC
static void vorbis_inverse_coupling_altivec(float *mag, float *ang,
- int blocksize)
+ intptr_t blocksize)
{
int i;
vector float m, a;