1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed some documentation and minor GCC warnings. Fixed a JACK bug that would have mixed up the input/output channels.

This commit is contained in:
jules 2012-11-14 11:42:17 +00:00
parent 4d4321bea1
commit c16c3a7c28
17 changed files with 90 additions and 116 deletions

View file

@ -2437,7 +2437,7 @@ FLAC__bool write_bitbuffer_(FLAC__StreamEncoder *encoder, unsigned samples, FLAC
return true;
}
FLAC__StreamEncoderWriteStatus write_frame_(FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, FLAC__bool is_last_block)
FLAC__StreamEncoderWriteStatus write_frame_(FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, FLAC__bool /* is_last_block */)
{
FLAC__StreamEncoderWriteStatus status;
FLAC__uint64 output_position = 0;