summaryrefslogtreecommitdiff
path: root/src/libFLAC/include/protected/stream_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libFLAC/include/protected/stream_decoder.h')
-rw-r--r--src/libFLAC/include/protected/stream_decoder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libFLAC/include/protected/stream_decoder.h b/src/libFLAC/include/protected/stream_decoder.h
index f7e20021..99092751 100644
--- a/src/libFLAC/include/protected/stream_decoder.h
+++ b/src/libFLAC/include/protected/stream_decoder.h
@@ -53,13 +53,13 @@ typedef struct FLAC__StreamDecoderProtected {
} FLAC__StreamDecoderProtected;
/*
- * return the number of input bytes consumed
+ * Return the number of input bytes consumed
*/
uint32_t FLAC__stream_decoder_get_input_bytes_unconsumed(const FLAC__StreamDecoder *decoder);
/*
- * return client_data from decoder
+ * Return client_data from decoder. The data pointed to by the pointer should not be modified.
*/
-FLAC_API void *get_client_data_from_decoder(FLAC__StreamDecoder *decoder);
+FLAC_API const void *FLAC__get_decoder_client_data(FLAC__StreamDecoder *decoder);
#endif