comparison libmpcodecs/vf_hue.c @ 28628:a7b4da3584ca

Remove unused and unreachable code hunk that was surrounded by a misspelled preprocessor condition.
author diego
date Thu, 19 Feb 2009 10:06:43 +0000
parents 25337a2147e7
children 0f1b5b68af32
comparison
equal deleted inserted replaced
28627:c327b2e9b259 28628:a7b4da3584ca
158 } 158 }
159 if (args) sscanf(args, "%f:%f", &vf->priv->hue, &vf->priv->saturation); 159 if (args) sscanf(args, "%f:%f", &vf->priv->hue, &vf->priv->saturation);
160 vf->priv->hue *= M_PI / 180.0; 160 vf->priv->hue *= M_PI / 180.0;
161 161
162 process = process_C; 162 process = process_C;
163 #if HAVE_MMXX
164 if(gCpuCaps.hasMMX) process = process_MMX;
165 #endif
166
167 return 1; 163 return 1;
168 } 164 }
169 165
170 #define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f) 166 #define ST_OFF(f) M_ST_OFF(struct vf_priv_s,f)
171 static m_option_t vf_opts_fields[] = { 167 static m_option_t vf_opts_fields[] = {