Displaying 3 results from an estimated 3 matches for "bombardieri".
2017 Apr 14
1
error message for flac --sign
Hi,
The --sign option in flac can be signed or unsigned,
but the error message mentions "uint32_t".
- Michael
diff --git a/src/flac/main.c b/src/flac/main.c
index 4e7361b3..c6d9b1e3 100644
--- a/src/flac/main.c
+++ b/src/flac/main.c
@@ -817,7 +817,7 @@ int parse_option(int short_option, const char *long_option, const char *option_a
else if(0 == strncmp(option_argument,
2012 Dec 12
1
[PATCH] psy.c tweak
Hi,
I am submitting a small patch for Vorbis psy.c...
* Make use of NEGINF constant where possible
Does this look OK?
- Michael
Index: psy.c
===================================================================
--- psy.c (revision 18737)
+++ psy.c (working copy)
@@ -29,7 +29,7 @@
#include "scales.h"
#include "misc.h"
-#define NEGINF -9999.f
+#define NEGINF (-9999.f)
2012 Dec 13
1
[PATCH] smallft.c
Hi,
I'm re-posting this; the first post
was filtered because I wasn't a member
of the mailing list...
I have a small diff for Vorbis
which replaces some loops with memcpy.
This allows us to take advantage of
memcpy's optimisations when copying
the floating point data.
Does this look OK?
- Michael
Index: smallft.c
===================================================================