summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Curry <pacman@TheWorld.com>2006-07-23 21:16:11 +0000
committerAlan Curry <pacman@TheWorld.com>2006-07-23 21:16:11 +0000
commitd8cfa5534a42f4713b4dedcdaf38f9992fce1943 (patch)
treec1295213bb3ac7ebd782294cbc7f2df9bc6deb14
parent9f82cdc7b518cd22df83eb5610253061dca6ef80 (diff)
Fix typo introduced in the memalign->av_malloc conversion (there is no
mv_malloc) Originally committed as revision 19174 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r--libswscale/swscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index b9e810d2c2..f45a4dfa46 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -2129,7 +2129,7 @@ SwsContext *sws_getContext(int srcW, int srcH, int origSrcFormat, int dstW, int
#ifdef HAVE_ALTIVEC
c->vYCoeffsBank = av_malloc(sizeof (vector signed short)*c->vLumFilterSize*c->dstH);
- c->vCCoeffsBank = mv_malloc(sizeof (vector signed short)*c->vChrFilterSize*c->chrDstH);
+ c->vCCoeffsBank = av_malloc(sizeof (vector signed short)*c->vChrFilterSize*c->chrDstH);
for (i=0;i<c->vLumFilterSize*c->dstH;i++) {
int j;