summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
Diffstat (limited to 'gst')
-rw-r--r--gst/speexresample/gstspeexresample.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gst/speexresample/gstspeexresample.c b/gst/speexresample/gstspeexresample.c
index 84057e64..010991d6 100644
--- a/gst/speexresample/gstspeexresample.c
+++ b/gst/speexresample/gstspeexresample.c
@@ -34,6 +34,10 @@
* </refsect2>
*/
+/* TODO:
+ * - Enable SSE/ARM optimizations and select at runtime
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
@@ -640,6 +644,8 @@ gst_speex_resample_convert_buffer (GstSpeexResample * resample,
i++;
len--;
}
+ } else {
+ g_assert_not_reached ();
}
} else {
if (gst_speex_resample_use_int && resample->width == 8 && !resample->fp) {
@@ -708,6 +714,8 @@ gst_speex_resample_convert_buffer (GstSpeexResample * resample,
i++;
len--;
}
+ } else {
+ g_assert_not_reached ();
}
}
}