Lines Matching refs:FLAC__StreamDecoder

82 static void set_defaults_(FLAC__StreamDecoder *decoder);
84 static FLAC__bool allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels);
85 static FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id);
86 static FLAC__bool find_metadata_(FLAC__StreamDecoder *decoder);
87 static FLAC__bool read_metadata_(FLAC__StreamDecoder *decoder);
88 static FLAC__bool read_metadata_streaminfo_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsig…
89 static FLAC__bool read_metadata_seektable_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsign…
90 static FLAC__bool read_metadata_vorbiscomment_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_V…
91 static FLAC__bool read_metadata_cuesheet_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_CueShe…
92 static FLAC__bool read_metadata_picture_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_Picture…
93 static FLAC__bool skip_id3v2_tag_(FLAC__StreamDecoder *decoder);
94 static FLAC__bool frame_sync_(FLAC__StreamDecoder *decoder);
95 static FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame, FLAC__bool do_…
96 static FLAC__bool read_frame_header_(FLAC__StreamDecoder *decoder);
97 static FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC…
98 static FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned …
99 static FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps…
100 static FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, …
101 static FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned …
102 static FLAC__bool read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_…
103 static FLAC__bool read_zero_padding_(FLAC__StreamDecoder *decoder);
106 static FLAC__StreamDecoderReadStatus read_callback_ogg_aspect_(const FLAC__StreamDecoder *decoder, …
109 static FLAC__StreamDecoderWriteStatus write_audio_frame_to_client_(FLAC__StreamDecoder *decoder, co…
110 static void send_error_to_client_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatu…
111 static FLAC__bool seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length…
113 static FLAC__bool seek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_le…
115 static FLAC__StreamDecoderReadStatus file_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__…
116 static FLAC__StreamDecoderSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__…
117 static FLAC__StreamDecoderTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__…
118 static FLAC__StreamDecoderLengthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FL…
119 static FLAC__bool file_eof_callback_(const FLAC__StreamDecoder *decoder, void *client_data);
251 FLAC_API FLAC__StreamDecoder *FLAC__stream_decoder_new(void) in FLAC__stream_decoder_new()
253 FLAC__StreamDecoder *decoder; in FLAC__stream_decoder_new()
258 decoder = calloc(1, sizeof(FLAC__StreamDecoder)); in FLAC__stream_decoder_new()
314 FLAC_API void FLAC__stream_decoder_delete(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_delete()
347 FLAC__StreamDecoder *decoder, in init_stream_internal_()
461 FLAC__StreamDecoder *decoder, in FLAC__stream_decoder_init_stream()
489 FLAC__StreamDecoder *decoder, in FLAC__stream_decoder_init_ogg_stream()
517 FLAC__StreamDecoder *decoder, in init_FILE_internal_()
561 FLAC__StreamDecoder *decoder, in FLAC__stream_decoder_init_FILE()
573 FLAC__StreamDecoder *decoder, in FLAC__stream_decoder_init_ogg_FILE()
585 FLAC__StreamDecoder *decoder, in init_file_internal_()
618 FLAC__StreamDecoder *decoder, in FLAC__stream_decoder_init_file()
630 FLAC__StreamDecoder *decoder, in FLAC__stream_decoder_init_ogg_file()
641 FLAC_API FLAC__bool FLAC__stream_decoder_finish(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_finish()
707 FLAC_API FLAC__bool FLAC__stream_decoder_set_ogg_serial_number(FLAC__StreamDecoder *decoder, long v… in FLAC__stream_decoder_set_ogg_serial_number()
724 FLAC_API FLAC__bool FLAC__stream_decoder_set_md5_checking(FLAC__StreamDecoder *decoder, FLAC__bool … in FLAC__stream_decoder_set_md5_checking()
734 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond(FLAC__StreamDecoder *decoder, FLAC__M… in FLAC__stream_decoder_set_metadata_respond()
751 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond_application(FLAC__StreamDecoder *deco… in FLAC__stream_decoder_set_metadata_respond_application()
779 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_respond_all(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_set_metadata_respond_all()
793 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore(FLAC__StreamDecoder *decoder, FLAC__Me… in FLAC__stream_decoder_set_metadata_ignore()
810 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore_application(FLAC__StreamDecoder *decod… in FLAC__stream_decoder_set_metadata_ignore_application()
838 FLAC_API FLAC__bool FLAC__stream_decoder_set_metadata_ignore_all(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_set_metadata_ignore_all()
850 FLAC_API FLAC__StreamDecoderState FLAC__stream_decoder_get_state(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_state()
857 FLAC_API const char *FLAC__stream_decoder_get_resolved_state_string(const FLAC__StreamDecoder *deco… in FLAC__stream_decoder_get_resolved_state_string()
862 FLAC_API FLAC__bool FLAC__stream_decoder_get_md5_checking(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_md5_checking()
869 FLAC_API FLAC__uint64 FLAC__stream_decoder_get_total_samples(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_total_samples()
876 FLAC_API unsigned FLAC__stream_decoder_get_channels(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_channels()
883 …__ChannelAssignment FLAC__stream_decoder_get_channel_assignment(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_channel_assignment()
890 FLAC_API unsigned FLAC__stream_decoder_get_bits_per_sample(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_bits_per_sample()
897 FLAC_API unsigned FLAC__stream_decoder_get_sample_rate(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_sample_rate()
904 FLAC_API unsigned FLAC__stream_decoder_get_blocksize(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_blocksize()
911 FLAC_API FLAC__bool FLAC__stream_decoder_get_decode_position(const FLAC__StreamDecoder *decoder, FL… in FLAC__stream_decoder_get_decode_position()
933 FLAC_API FLAC__bool FLAC__stream_decoder_flush(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_flush()
956 FLAC_API FLAC__bool FLAC__stream_decoder_reset(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_reset()
1016 FLAC_API FLAC__bool FLAC__stream_decoder_process_single(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_process_single()
1053 FLAC_API FLAC__bool FLAC__stream_decoder_process_until_end_of_metadata(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_process_until_end_of_metadata()
1080 FLAC_API FLAC__bool FLAC__stream_decoder_process_until_end_of_stream(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_process_until_end_of_stream()
1114 FLAC_API FLAC__bool FLAC__stream_decoder_skip_single_frame(FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_skip_single_frame()
1145 FLAC_API FLAC__bool FLAC__stream_decoder_seek_absolute(FLAC__StreamDecoder *decoder, FLAC__uint64 s… in FLAC__stream_decoder_seek_absolute()
1218 unsigned FLAC__stream_decoder_get_input_bytes_unconsumed(const FLAC__StreamDecoder *decoder) in FLAC__stream_decoder_get_input_bytes_unconsumed()
1232 void set_defaults_(FLAC__StreamDecoder *decoder) in set_defaults_()
1279 FLAC__bool allocate_output_(FLAC__StreamDecoder *decoder, unsigned size, unsigned channels) in allocate_output_()
1330 FLAC__bool has_id_filtered_(FLAC__StreamDecoder *decoder, FLAC__byte *id) in has_id_filtered_()
1344 FLAC__bool find_metadata_(FLAC__StreamDecoder *decoder) in find_metadata_()
1409 FLAC__bool read_metadata_(FLAC__StreamDecoder *decoder) in read_metadata_()
1584 FLAC__bool read_metadata_streaminfo_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsigned len… in read_metadata_streaminfo_()
1655 FLAC__bool read_metadata_seektable_(FLAC__StreamDecoder *decoder, FLAC__bool is_last, unsigned leng… in read_metadata_seektable_()
1697 FLAC__bool read_metadata_vorbiscomment_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_VorbisCo… in read_metadata_vorbiscomment_()
1794 FLAC__bool read_metadata_cuesheet_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_CueSheet *obj) in read_metadata_cuesheet_()
1877 FLAC__bool read_metadata_picture_(FLAC__StreamDecoder *decoder, FLAC__StreamMetadata_Picture *obj) in read_metadata_picture_()
1945 FLAC__bool skip_id3v2_tag_(FLAC__StreamDecoder *decoder) in skip_id3v2_tag_()
1967 FLAC__bool frame_sync_(FLAC__StreamDecoder *decoder) in frame_sync_()
2022 FLAC__bool read_frame_(FLAC__StreamDecoder *decoder, FLAC__bool *got_a_frame, FLAC__bool do_full_de… in read_frame_()
2167 FLAC__bool read_frame_header_(FLAC__StreamDecoder *decoder) in read_frame_header_()
2476 FLAC__bool read_subframe_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FLAC__bool … in read_subframe_()
2546 FLAC__bool read_subframe_constant_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FL… in read_subframe_constant_()
2569 FLAC__bool read_subframe_fixed_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const… in read_subframe_fixed_()
2626 FLAC__bool read_subframe_lpc_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, const u… in read_subframe_lpc_()
2714 FLAC__bool read_subframe_verbatim_(FLAC__StreamDecoder *decoder, unsigned channel, unsigned bps, FL… in read_subframe_verbatim_()
2737 FLAC__bool read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, … in read_residual_partitioned_rice_()
2795 FLAC__bool read_zero_padding_(FLAC__StreamDecoder *decoder) in read_zero_padding_()
2811 FLAC__StreamDecoder *decoder = (FLAC__StreamDecoder *)client_data; in read_callback_()
2890 FLAC__StreamDecoderReadStatus read_callback_ogg_aspect_(const FLAC__StreamDecoder *decoder, FLAC__b… in read_callback_ogg_aspect_()
2918 FLAC__StreamDecoder *decoder = (FLAC__StreamDecoder*)void_decoder; in read_callback_proxy_()
2935 FLAC__StreamDecoderWriteStatus write_audio_frame_to_client_(FLAC__StreamDecoder *decoder, const FLA… in write_audio_frame_to_client_()
2987 void send_error_to_client_(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus statu… in send_error_to_client_()
2995 FLAC__bool seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC_… in seek_to_absolute_sample_()
3205 FLAC__bool seek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, F… in seek_to_absolute_sample_ogg_()
3258 …if(decoder->private_->seek_callback((FLAC__StreamDecoder*)decoder, (FLAC__uint64)pos, decoder->pri… in seek_to_absolute_sample_ogg_()
3336 FLAC__StreamDecoderReadStatus file_read_callback_(const FLAC__StreamDecoder *decoder, FLAC__byte bu… in file_read_callback_()
3353 FLAC__StreamDecoderSeekStatus file_seek_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 … in file_seek_callback_()
3365 FLAC__StreamDecoderTellStatus file_tell_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 … in file_tell_callback_()
3380 FLAC__StreamDecoderLengthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uin… in file_length_callback_()
3395 FLAC__bool file_eof_callback_(const FLAC__StreamDecoder *decoder, void *client_data) in file_eof_callback_()