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;
1809 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))
1838 track->number = (FLAC__byte)x;
1841 if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)track->isrc, FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN/8))
1857 track->num_indices = (FLAC__byte)x;
1871 indx->number = (FLAC__byte)x;
1902 if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)obj->mime_type, x))
2003 decoder->private_->header_warmup[0] = (FLAC__byte)x;
2010 decoder->private_->lookahead = (FLAC__byte)x;
2014 decoder->private_->header_warmup[1] = (FLAC__byte)x;
2178 FLAC__byte crc8, raw_header[16]; /* MAGIC NUMBER based on the maximum frame header size, including CRC */
2220 decoder->private_->lookahead = (FLAC__byte)x;
2226 raw_header[raw_header_len++] = (FLAC__byte)x;
2407 raw_header[raw_header_len++] = (FLAC__byte)x;
2412 raw_header[raw_header_len++] = (FLAC__byte)_x;
2421 raw_header[raw_header_len++] = (FLAC__byte)x;
2426 raw_header[raw_header_len++] = (FLAC__byte)_x;
2440 crc8 = (FLAC__byte)x;
2816 FLAC__bool read_callback_(FLAC__byte buffer[], size_t *bytes, void *client_data)
2897 FLAC__StreamDecoderReadStatus read_callback_ogg_aspect_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes)
2923 FLAC__OggDecoderAspectReadStatus read_callback_proxy_(const void *void_decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
3343 FLAC__StreamDecoderReadStatus file_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
3348 *bytes = fread(buffer, sizeof(FLAC__byte), *bytes, decoder->private_->file);