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 …adStatus read_callback_ogg_aspect_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t…
107 static FLAC__OggDecoderAspectReadStatus read_callback_proxy_(const void *void_decoder, FLAC__byte b…
115 …oderReadStatus file_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t…
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 …ream_decoder_set_metadata_respond_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4]) in FLAC__stream_decoder_set_metadata_respond_application()
810 …tream_decoder_set_metadata_ignore_application(FLAC__StreamDecoder *decoder, const FLAC__byte id[4]) in FLAC__stream_decoder_set_metadata_ignore_application()
1330 FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id) in has_id_filtered_()
1382 decoder->private_->header_warmup[0] = (FLAC__byte)x; in find_metadata_()
1389 decoder->private_->lookahead = (FLAC__byte)x; in find_metadata_()
1393 decoder->private_->header_warmup[1] = (FLAC__byte)x; in find_metadata_()
1803 …if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)obj->med… in read_metadata_cuesheet_()
1832 track->number = (FLAC__byte)x; in read_metadata_cuesheet_()
1835 …if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)track->i… in read_metadata_cuesheet_()
1851 track->num_indices = (FLAC__byte)x; in read_metadata_cuesheet_()
1865 indx->number = (FLAC__byte)x; in read_metadata_cuesheet_()
1896 …if(!FLAC__bitreader_read_byte_block_aligned_no_crc(decoder->private_->input, (FLAC__byte*)obj->mim… in read_metadata_picture_()
1997 decoder->private_->header_warmup[0] = (FLAC__byte)x; in frame_sync_()
2004 decoder->private_->lookahead = (FLAC__byte)x; in frame_sync_()
2008 decoder->private_->header_warmup[1] = (FLAC__byte)x; in frame_sync_()
2172FLAC__byte crc8, raw_header[16]; /* MAGIC NUMBER based on the maximum frame header size, including… in read_frame_header_()
2214 decoder->private_->lookahead = (FLAC__byte)x; in read_frame_header_()
2220 raw_header[raw_header_len++] = (FLAC__byte)x; in read_frame_header_()
2401 raw_header[raw_header_len++] = (FLAC__byte)x; in read_frame_header_()
2406 raw_header[raw_header_len++] = (FLAC__byte)_x; in read_frame_header_()
2415 raw_header[raw_header_len++] = (FLAC__byte)x; in read_frame_header_()
2420 raw_header[raw_header_len++] = (FLAC__byte)_x; in read_frame_header_()
2434 crc8 = (FLAC__byte)x; in read_frame_header_()
2809 FLAC__bool read_callback_(FLAC__byte buffer[], size_t *bytes, void *client_data) in read_callback_()
2890 …adStatus read_callback_ogg_aspect_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t… in read_callback_ogg_aspect_()
2916 FLAC__OggDecoderAspectReadStatus read_callback_proxy_(const void *void_decoder, FLAC__byte buffer[]… in read_callback_proxy_()
3336 FLAC__StreamDecoderReadStatus file_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte bu… in file_read_callback_()
3341 *bytes = fread(buffer, sizeof(FLAC__byte), *bytes, decoder->private_->file); in file_read_callback_()