search for: fmcomposer

Displaying 3 results from an estimated 3 matches for "fmcomposer".

Did you mean: composer
2018 Mar 22
2
Crash when writing 32bit flac files, am I doing something wrong ?
...r.c line 2263 : *encoder->private_->integer_signal[channel][i] = buffer[k++];* It happens when I call *FLAC__stream_encoder_process_interleaved**(encoder, out, 16384/2)* in my code. Its working perfectly for all bit depth except 32 bit. Output message: Unhandled exception at 0x00F98441 in fmcomposer.exe: 0xC0000005: Access violation writing location 0x00000000. I'm using the latest code from the github repository. Reading the docs didn't noticed any thing special to do for writing 32 bit FLACs, it seems it should be supported. Maybe I am missing something ? Regards Stéphane -----...
2018 Mar 24
0
Crash when writing 32bit flac files, am I doing something wrong ?
...gt;private_->integer_signal[channel][i] = buffer[k++]; > > It happens when I call FLAC__stream_encoder_process_interleaved(encoder, > out, 16384/2) in my code. Its working perfectly for all bit depth except 32 > bit. > > > Output message: Unhandled exception at 0x00F98441 in fmcomposer.exe: > 0xC0000005: Access violation writing location 0x00000000. > > > I'm using the latest code from the github repository. Reading the docs > didn't noticed any thing special to do for writing 32 bit FLACs, it seems it > should be supported. Maybe I am missing something...
2018 Feb 28
2
Using FLAC encoder in my software
Hello I'm the developer of the newly released FM Composer, an open source music software featuring a tracker and an FM synthesizer : http://fmcomposer.org It's currently under GPL v3. I've added a FLAC export feature for the next version to be released, using libFLAC. I'm not really sure about what I can do, even after reading the copyright notice... - Should I use libFLAC as static or dynamic library ? - No problem including it in...