Original commit message from CVS:
* gst/speexresample/gstspeexresample.c:
(gst_speex_resample_convert_buffer):
Add TODO at the top of the file for enabling SSE/ARM specific
optimizations and choosing the fastest implementation at runtime.
Add g_assert_not_reached() at two places that should really never
be reached.
* </refsect2>
*/
+/* TODO:
+ * - Enable SSE/ARM optimizations and select at runtime
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
i++;
len--;
}
+ } else {
+ g_assert_not_reached ();
}
} else {
if (gst_speex_resample_use_int && resample->width == 8 && !resample->fp) {
i++;
len--;
}
+ } else {
+ g_assert_not_reached ();
}
}
}