• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/

Lines Matching defs:client_data

123 static FLAC__StreamDecoderReadStatus stream_decoder_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
125 StreamDecoderClientData *dcd = (StreamDecoderClientData*)client_data;
131 printf("ERROR: client_data in read callback is NULL\n");
158 static FLAC__StreamDecoderSeekStatus stream_decoder_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data)
160 StreamDecoderClientData *dcd = (StreamDecoderClientData*)client_data;
165 printf("ERROR: client_data in seek callback is NULL\n");
180 static FLAC__StreamDecoderTellStatus stream_decoder_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
182 StreamDecoderClientData *dcd = (StreamDecoderClientData*)client_data;
188 printf("ERROR: client_data in tell callback is NULL\n");
206 static FLAC__StreamDecoderLengthStatus stream_decoder_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data)
208 StreamDecoderClientData *dcd = (StreamDecoderClientData*)client_data;
213 printf("ERROR: client_data in length callback is NULL\n");
224 static FLAC__bool stream_decoder_eof_callback_(const FLAC__StreamDecoder *decoder, void *client_data)
226 StreamDecoderClientData *dcd = (StreamDecoderClientData*)client_data;
231 printf("ERROR: client_data in eof callback is NULL\n");
241 static FLAC__StreamDecoderWriteStatus stream_decoder_write_callback_(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
243 StreamDecoderClientData *dcd = (StreamDecoderClientData*)client_data;
248 printf("ERROR: client_data in write callback is NULL\n");
266 static void stream_decoder_metadata_callback_(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
268 StreamDecoderClientData *dcd = (StreamDecoderClientData*)client_data;
273 printf("ERROR: client_data in metadata callback is NULL\n");
296 static void stream_decoder_error_callback_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
298 StreamDecoderClientData *dcd = (StreamDecoderClientData*)client_data;
303 printf("ERROR: client_data in error callback is NULL\n");