summaryrefslogtreecommitdiff
path: root/include/FLAC/stream_encoder.h
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2006-10-15 17:08:52 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2006-10-15 17:08:52 +0000
commit352feb540f5254c3dca68885e089387ac00ddc6b (patch)
treee8f489bdd00c4c7a90af1414c1602584c735a7a0 /include/FLAC/stream_encoder.h
parent8065a2d3a57b6db22e0221c9d06d8faa22ba1b45 (diff)
downloadflac-352feb540f5254c3dca68885e089387ac00ddc6b.tar.gz
change "bytes" parameter of all encoder write callbacks from "unsigned" to "size_t"
Diffstat (limited to 'include/FLAC/stream_encoder.h')
-rw-r--r--include/FLAC/stream_encoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/FLAC/stream_encoder.h b/include/FLAC/stream_encoder.h
index 3851fc34..7cddc067 100644
--- a/include/FLAC/stream_encoder.h
+++ b/include/FLAC/stream_encoder.h
@@ -522,7 +522,7 @@ typedef FLAC__StreamEncoderReadStatus (*FLAC__StreamEncoderReadCallback)(const F
* \retval FLAC__StreamEncoderWriteStatus
* The callee's return status.
*/
-typedef FLAC__StreamEncoderWriteStatus (*FLAC__StreamEncoderWriteCallback)(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data);
+typedef FLAC__StreamEncoderWriteStatus (*FLAC__StreamEncoderWriteCallback)(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, void *client_data);
/** Signature for the seek callback.
*