summaryrefslogtreecommitdiff
path: root/include/OggFLAC
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2003-09-24 22:03:35 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2003-09-24 22:03:35 +0000
commit8bd4884ca184c2ce667d91b1f89eade1132b2e21 (patch)
treeb4ae7ad682af38d8a38f2bec4e9aa0b94f3ce107 /include/OggFLAC
parent39578a063a5b1fb00d9e185de1e970e4ae33b249 (diff)
downloadflac-8bd4884ca184c2ce667d91b1f89eade1132b2e21.tar.gz
add the metadata callback back in the stream encoder
Diffstat (limited to 'include/OggFLAC')
-rw-r--r--include/OggFLAC/stream_encoder.h42
1 files changed, 37 insertions, 5 deletions
diff --git a/include/OggFLAC/stream_encoder.h b/include/OggFLAC/stream_encoder.h
index 559f2f6f..c5d05e87 100644
--- a/include/OggFLAC/stream_encoder.h
+++ b/include/OggFLAC/stream_encoder.h
@@ -55,10 +55,11 @@ extern "C" {
* \ingroup oggflac
*
* \brief
- * This module describes the encoder layers provided by libOggFLAC.
+ * This module describes the three encoder layers provided by libOggFLAC.
*
- * libOggFLAC currently provides the same stream layer access as libFLAC;
- * the interface is nearly identical. See the \link flac_encoder FLAC
+ * libOggFLAC currently provides the same three layers of access as libFLAC;
+ * the interfaces are nearly identical, with the addition of a method for
+ * specifying the Ogg serial number. See the \link flac_encoder FLAC
* encoder module \endlink for full documentation.
*/
@@ -70,8 +71,10 @@ extern "C" {
* encoder.
*
* The interface here is nearly identical to FLAC's stream encoder,
- * including the callbacks. See the \link flac_stream_encoder
- * FLAC stream encoder module \endlink for full documentation.
+ * including the callbacks, with the addition of
+ * OggFLAC__stream_encoder_set_serial_number(). See the
+ * \link flac_stream_encoder FLAC stream encoder module \endlink
+ * for full documentation.
*
* \{
*/
@@ -154,6 +157,17 @@ typedef struct {
*/
typedef FLAC__StreamEncoderWriteStatus (*OggFLAC__StreamEncoderWriteCallback)(const OggFLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data);
+/** Signature for the metadata callback.
+ * See OggFLAC__stream_encoder_set_metadata_callback()
+ * and FLAC__stream_encoder_set_metadata_callback() for more info.
+ *
+ * \param encoder The encoder instance calling the callback.
+ * \param metadata The final populated STREAMINFO block.
+ * \param client_data The callee's client data set through
+ * FLAC__stream_encoder_set_client_data().
+ */
+typedef void (*OggFLAC__StreamEncoderMetadataCallback)(const OggFLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data);
+
/***********************************************************************
*
@@ -439,6 +453,24 @@ OggFLAC_API FLAC__bool OggFLAC__stream_encoder_set_metadata(OggFLAC__StreamEncod
*/
OggFLAC_API FLAC__bool OggFLAC__stream_encoder_set_write_callback(OggFLAC__StreamEncoder *encoder, OggFLAC__StreamEncoderWriteCallback value);
+/** Set the metadata callback.
+ * This is inherited from FLAC__StreamEncoder; see
+ * FLAC__stream_encoder_set_metadata_callback().
+ *
+ * \note
+ * The callback is mandatory and must be set before initialization.
+ *
+ * \default \c NULL
+ * \param encoder An encoder instance to set.
+ * \param value See above.
+ * \assert
+ * \code encoder != NULL \endcode
+ * \code value != NULL \endcode
+ * \retval FLAC__bool
+ * \c false if the encoder is already initialized, else \c true.
+ */
+OggFLAC_API FLAC__bool OggFLAC__stream_encoder_set_metadata_callback(OggFLAC__StreamEncoder *encoder, OggFLAC__StreamEncoderMetadataCallback value);
+
/** Set the client data to be passed back to callbacks.
* This value will be supplied to callbacks in their \a client_data
* argument.