summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_smartblur.c
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-04-24 17:04:20 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-04-24 17:04:20 +0000
commit0f929103eda866c62c88a38a9a2173a4da0e524c (patch)
tree605cd0439198fd225e191a67ebf2a40eea292a45 /libmpcodecs/vf_smartblur.c
parent7e219d9be42b09a0af5ce3483aa3fc5c659d76fd (diff)
downloadmpv-0f929103eda866c62c88a38a9a2173a4da0e524c.tar.bz2
mpv-0f929103eda866c62c88a38a9a2173a4da0e524c.tar.xz
removing sws - global verbose var dependancy
removing sws - cpudetect dependancy (note rgb2rgb still needs it) moving mplayer specific stuff from swscale.c -> vf_scale.c git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9976 b3059339-0415-0410-9bf9-f77b7e298cf2
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 3156bd17d8..6841347b94 100644
--- a/libmpcodecs/vf_smartblur.c
+++ b/libmpcodecs/vf_smartblur.c
@@ -94,7 +94,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, IMGFMT_Y8, width, height, IMGFMT_Y8, 0, &swsF, NULL);
+ width, height, IMGFMT_Y8, width, height, IMGFMT_Y8, get_sws_cpuflags(), &swsF, NULL);
sws_freeVec(vec);