Displaying 6 results from an estimated 6 matches for "inbasefilenam".
Did you mean:
inbasefilename
2007 Jan 08
6
[PATCH 0/5] Debian patches for 1.1.3
Hi Josh,
Here are all the patches that are currently applied to the Debian
packages for flac. You may disagree with some of them but as the current
maintainer, I'm submitting them all for your consideration.
(I should've submitted them earlier, but I've been quite busy. Sorry!)
Here is a listing of the patches that I'll be sending:
Patch 1 fixes a simple typo in metaflac
2014 Mar 20
2
Wrong warning in encoder for 24bits WAV
...16) {
if(bps == 24 || bps == 32) {
/* let these slide with a warning since they're
unambiguous */
flac__utils_printf(stderr, 1, "%s: WARNING:
legacy WAVE file has format type %u but bits-per-sample=%u\n",
e->inbasefilename, (unsigned)wFormatTag, bps);
AFAIK only 32bits file require a format of 3 while it's fine for 8, 16
and 24bits
Thanks !
--
Olivier TRISTAN
uvi.net
2014 Sep 26
0
Patch to add buffering to decoding too
...ic FLAC__bool DecoderSession_process(DecoderSession *d, const char *outfilename);
static int DecoderSession_finish_ok(DecoderSession *d);
static int DecoderSession_finish_error(DecoderSession *d);
static FLAC__bool canonicalize_until_specification(utils__SkipUntilSpecification *spec, const char *inbasefilename, unsigned sample_rate, FLAC__uint64 skip, FLAC__uint64 total_samples_in_input);
@@ -177,7 +177,7 @@ int flac__decode_file(const char *infilename, const char *outfilename, FLAC__boo
if(!DecoderSession_init_decoder(&decoder_session, infilename))
return DecoderSession_finish_error(&decod...
2014 Sep 26
3
Patch to add buffering to decoding too
Can you please wrap the setvbuf in _WIN32 IFDEFs too? Currently
memory usage of FLAC decoding is about 1MB, so this patch is
increasing memory usage tenfold, also for platforms that do not
need this. It is a non-problem on my system anyway.
Op 26-09-14 om 10:36 schreef Janne Hyv?rinen:
> I made some changes to the previous patch. I don't know why I
> originally didn't put the
2014 Sep 25
2
Patch to add buffering to decoding too
Decoding flac files is also prone to producing fragmented files. NTFS
has the ability to completely avoid fragmentation if it is told the file
size before hand, but that would require using special Windows-only
functions. Increasing the write buffer from the default 512 bytes to 10
MB already reduces the problem tremendously.
-------------- next part --------------
diff --git
2014 Sep 26
4
Patch to add buffering to decoding too
...ic FLAC__bool DecoderSession_process(DecoderSession *d, const char *outfilename);
static int DecoderSession_finish_ok(DecoderSession *d);
static int DecoderSession_finish_error(DecoderSession *d);
static FLAC__bool canonicalize_until_specification(utils__SkipUntilSpecification *spec, const char *inbasefilename, unsigned sample_rate, FLAC__uint64 skip, FLAC__uint64 total_samples_in_input);
@@ -177,7 +177,7 @@ int flac__decode_file(const char *infilename, const char *outfilename, FLAC__boo
if(!DecoderSession_init_decoder(&decoder_session, infilename))
return DecoderSession_finish_error(&decod...