From bc45751f7ffcbe61d798cbea397e4b6dc3685af3 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 16 Jan 2010 19:22:30 +0000 Subject: [PATCH] =?UTF-8?q?Declare=20with=20av=5Funused=20the=20variable?= =?UTF-8?q?=20alpMmxFilter,=20fix=20the=20gcc=20warning:=20swscale=5Ftempl?= =?UTF-8?q?ate.c:=20In=20function=20=E2=80=98swScale=5FC=E2=80=99:=20swsca?= =?UTF-8?q?le=5Ftemplate.c:2580:=20warning:=20unused=20variable=20?= =?UTF-8?q?=E2=80=98alpMmxFilter=E2=80=99=20swscale=5Ftemplate.c:=20In=20f?= =?UTF-8?q?unction=20=E2=80=98sws=5Finit=5FswScale=5FC=E2=80=99:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originally committed as revision 30332 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale --- libswscale/swscale_template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index 0aa60357e0..76297d6e59 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -2577,7 +2577,7 @@ static int RENAME(swScale)(SwsContext *c, const uint8_t* src[], int srcStride[], int16_t *hChrFilter= c->hChrFilter; int32_t *lumMmxFilter= c->lumMmxFilter; int32_t *chrMmxFilter= c->chrMmxFilter; - int32_t *alpMmxFilter= c->alpMmxFilter; + int32_t av_unused *alpMmxFilter= c->alpMmxFilter; const int vLumFilterSize= c->vLumFilterSize; const int vChrFilterSize= c->vChrFilterSize; const int hLumFilterSize= c->hLumFilterSize;