summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_smartblur.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2008-10-28 04:12:18 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2008-10-28 04:12:18 +0200
commit479f5e742f22d46430fa265adfa9162f4e2ab865 (patch)
tree8450cfd34feb5b81d604101ad9ebfc7b24c1d88e /libmpcodecs/vf_smartblur.c
parent0d7f9f033cdd677df3b85aca45491955b87a1abc (diff)
parent97293969b40797442ec0f612b89a89ace8804561 (diff)
downloadmpv-479f5e742f22d46430fa265adfa9162f4e2ab865.tar.bz2
mpv-479f5e742f22d46430fa265adfa9162f4e2ab865.tar.xz
Merge svn changes up to r27841
Conflicts: mplayer.c
Diffstat (limited to 'libmpcodecs/vf_smartblur.c')
-rw-r--r--libmpcodecs/vf_smartblur.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vf_smartblur.c b/libmpcodecs/vf_smartblur.c
index ce98514fc7..82265416cc 100644
--- a/libmpcodecs/vf_smartblur.c
+++ b/libmpcodecs/vf_smartblur.c
@@ -93,7 +93,7 @@ static int allocStuff(FilterParam *f, int width, int height){
swsF.lumH= swsF.lumV= vec;
swsF.chrH= swsF.chrV= NULL;
f->filterContext= sws_getContext(
- width, height, PIX_FMT_GRAY8, width, height, PIX_FMT_GRAY8, get_sws_cpuflags(), &swsF, NULL, NULL);
+ width, height, PIX_FMT_GRAY8, width, height, PIX_FMT_GRAY8, SWS_BICUBIC | get_sws_cpuflags(), &swsF, NULL, NULL);
sws_freeVec(vec);