Lines Matching refs:FLAC__byte

74 static const FLAC__byte ID3V2_TAG_[3] = { 'I', 'D', '3' };
85 static FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id);
104 static FLAC__bool read_callback_(FLAC__byte buffer[], size_t *bytes, void *client_data);
106 static FLAC__StreamDecoderReadStatus read_callback_ogg_aspect_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes);
107 static FLAC__OggDecoderAspectReadStatus read_callback_proxy_(const void *void_decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
115 static FLAC__StreamDecoderReadStatus file_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
158 FLAC__byte *metadata_filter_ids;
163 FLAC__byte header_warmup[2]; /* contains the sync code and reserved bits */
164 FLAC__byte lookahead; /* temp storage when we need to look ahead one byte in the stream */
171 FLAC__byte computed_md5sum[16]; /* this is the sum we computed from the decoded data */
751 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4])
810 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4])
1330 FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id)
1382 decoder->private_->header_warmup[0] = (FLAC__byte)x;
1389 decoder->private_->lookahead = (FLAC__byte)x;
1393 decoder->private_->header_warmup[1] = (FLAC__byte)x;
1803 if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)obj->media_catalog_number, FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN/8))
1832 track->number = (FLAC__byte)x;
1835 if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)track->isrc, FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN/8))
1851 track->num_indices = (FLAC__byte)x;
1865 indx->number = (FLAC__byte)x;
1896 if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)obj->mime_type, x))
1997 decoder->private_->header_warmup[0] = (FLAC__byte)x;
2004 decoder->private_->lookahead = (FLAC__byte)x;
2008 decoder->private_->header_warmup[1] = (FLAC__byte)x;
2172 FLAC__byte crc8, raw_header[16]; /* MAGIC NUMBER based on the maximum frame header size, including CRC */
2214 decoder->private_->lookahead = (FLAC__byte)x;
2220 raw_header[raw_header_len++] = (FLAC__byte)x;
2401 raw_header[raw_header_len++] = (FLAC__byte)x;
2406 raw_header[raw_header_len++] = (FLAC__byte)_x;
2415 raw_header[raw_header_len++] = (FLAC__byte)x;
2420 raw_header[raw_header_len++] = (FLAC__byte)_x;
2434 crc8 = (FLAC__byte)x;
2809 FLAC__bool read_callback_(FLAC__byte buffer[], size_t *bytes, void *client_data)
2890 FLAC__StreamDecoderReadStatus read_callback_ogg_aspect_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes)
2916 FLAC__OggDecoderAspectReadStatus read_callback_proxy_(const void *void_decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
3336 FLAC__StreamDecoderReadStatus file_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
3341 *bytes = fread(buffer, sizeof(FLAC__byte), *bytes, decoder->private_->file);