audio-resampler: also enable sse when sse2 is available
authorWim Taymans <wtaymans@redhat.com>
Wed, 13 Jan 2016 16:50:38 +0000 (17:50 +0100)
committerWim Taymans <wtaymans@redhat.com>
Mon, 28 Mar 2016 11:25:50 +0000 (13:25 +0200)
gst-libs/gst/audio/audio-resampler-x86.h

index 284e7c9..ea9cd5e 100644 (file)
@@ -166,6 +166,7 @@ audio_resampler_check_x86 (const gchar *option)
   } else if (!strcmp (option, "sse2")) {
     GST_DEBUG ("enable SSE2 optimisations");
     resample_gint16_1 = resample_gint16_1_sse2;
+    resample_gfloat_1 = resample_gfloat_1_sse;
     resample_gdouble_1 = resample_gdouble_1_sse2;
     resample_gint16_2 = resample_gint16_2_sse2;
     resample_gdouble_2 = resample_gdouble_2_sse2;