Displaying 5 results from an estimated 5 matches for "stin".
Did you mean:
sti
2001 Jan 29
1
Mac OS X/Darwin patch for libvorbis
...=========================
RCS file: /usr/local/cvsroot/vorbis/lib/os.h,v
retrieving revision 1.19
diff -u -p -r1.19 os.h
--- lib/os.h 2000/12/21 21:04:40 1.19
+++ lib/os.h 2001/01/30 01:37:28
@@ -24,19 +24,31 @@
#ifndef _V_IFDEFJAIL_H_
#define _V_IFDEFJAIL_H_
+#ifdef __GNUC__
+#define STIN static inline
+#elif _WIN32
+#define STIN static __inline
+#else
+#define STIN static
+#endif
+
#ifndef M_PI
#define M_PI (3.1415926536f)
#endif
-#ifndef __GNUC__
+
#ifdef _WIN32
# include <malloc.h>
# define rint(x) (floor((x)+0.5f))
+# define NO_FLOAT_MATH_LIB
+# define FAST_...
2003 May 20
2
mdct_backward with fused muladd?
Can anybody point me at any resources that would explain how to optimize
mdct_backward for a cpu with a fused multiply-accumute unit?
>From what I understand from responses to my older postings, Tremor's
mdct_backward could be rewritten to take advantage of a muladd.
My target machine can do either two-wide 32x32 + Accum(64) -> Accum(64)
integer muladd or eight-wide 16x16 + Accum(32) -> Accum(32) integer muladd
or four-wide single-precision floating-point muladd.
The tremor...
2014 Sep 10
4
[RFC PATCH v1 0/3] Introducing ARM SIMD Support
libvorbis does not currently have any simd/vectorization.
Following patches add generic framework for simd/vectorization
and on top, add ARM-NEON simd vectorization using intrinsics.
I was able to get over 34% performance improvement on my
Beaglebone Black which is single Cortex-A8 based CPU.
You can find more information on metrics and procedure I used
to measure at
2008 Jan 23
2
Ajax.Autocompleter parameters
I''m trying to pass additional variables to my autocomplete data page.
I used the parameters option but this only sends a static variable
(i.e. I can''t do something like parameters:"param1="+$
(''checkbox1'').checked).
I thought I could fix this by calling a new Ajax.Autocompleter every
time the checkbox was clicked but that just created duplicate
2018 Mar 20
1
several tremor patches
...h-compilers-which-doesn-t-ha.patch
Type: text/x-patch
Size: 7081 bytes
Desc: not available
URL: <http://lists.xiph.org/pipermail/vorbis-dev/attachments/20180320/998341f5/attachment-0022.bin>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0010-remove-non-existing-vorbis_comment_add-and-vorbis_co.patch
Type: text/x-patch
Size: 1479 bytes
Desc: not available
URL: <http://lists.xiph.org/pipermail/vorbis-dev/attachments/20180320/998341f5/attachment-0023.bin>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0011-os.h-rem...