shithub: dumb

Download patch

ref: 8298eb20f77e77c92012ca880e479456d0d1112c
parent: 23f9ebdf1a385e01b365598527c0a59458a4c99d
author: Chris Moeller <kode54@gmail.com>
date: Fri Oct 4 06:15:52 EDT 2013

Made resampler and SSE filter setup functions public, in case anyone wants to call them early to prevent possible but harmless race conditions

--- a/dumb/include/internal/it.h
+++ b/dumb/include/internal/it.h
@@ -919,4 +919,10 @@
 
 void _dumb_it_interleave_stereo_sample(IT_SAMPLE *sample);
 
+/* Calling either of these is optional */
+void _dumb_init_cubic();
+#ifdef _USE_SSE
+void _dumb_init_sse();
+#endif
+
 #endif /* INTERNAL_IT_H */