mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
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
This commit is contained in:
parent
9f82cdc7b5
commit
d8cfa5534a
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user