• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/flac-1.2.1/src/flac/

Lines Matching refs:FLAC__bool

47 	FLAC__bool is_ogg;
48 FLAC__bool use_first_serial_number;
52 FLAC__bool is_aiff_out;
53 FLAC__bool is_wave_out;
54 FLAC__bool treat_warnings_as_errors;
55 FLAC__bool continue_through_decode_errors;
56 FLAC__bool channel_map_none;
60 FLAC__bool apply; /* 'spec.apply' is just a request; this 'apply' means we actually parsed the RG tags and are ready to go */
65 FLAC__bool test_only;
66 FLAC__bool analysis_mode;
78 FLAC__bool abort_flag;
79 FLAC__bool aborting_due_to_until; /* true if we intentionally abort decoding prematurely because we hit the --until point */
80 FLAC__bool aborting_due_to_unparseable; /* true if we abort decoding because we hit an unparseable frame */
82 FLAC__bool iff_headers_need_fixup;
84 FLAC__bool is_big_endian;
85 FLAC__bool is_unsigned_samples;
86 FLAC__bool got_stream_info;
87 FLAC__bool has_md5sum;
106 static FLAC__bool is_big_endian_host_;
112 static FLAC__bool DecoderSession_construct(DecoderSession *d, FLAC__bool is_ogg, FLAC__bool use_first_serial_number, long serial_number, FLAC__bool is_aiff_out, FLAC__bool is_wave_out, FLAC__bool treat_warnings_as_errors, FLAC__bool continue_through_decode_errors, FLAC__bool channel_map_none, replaygain_synthesis_spec_t replaygain_synthesis_spec, FLAC__bool analysis_mode, analysis_options aopts, utils__SkipUntilSpecification *skip_specification, utils__SkipUntilSpecification *until_specification, utils__CueSpecification *cue_specification, foreign_metadata_t *foreign_metadata, const char *infilename, const char *outfilename);
113 static void DecoderSession_destroy(DecoderSession *d, FLAC__bool error_occurred);
114 static FLAC__bool DecoderSession_init_decoder(DecoderSession *d, const char *infilename);
115 static FLAC__bool DecoderSession_process(DecoderSession *d);
118 static FLAC__bool canonicalize_until_specification(utils__SkipUntilSpecification *spec, const char *inbasefilename, unsigned sample_rate, FLAC__uint64 skip, FLAC__uint64 total_samples_in_input);
119 static FLAC__bool write_iff_headers(FILE *f, DecoderSession *decoder_session, FLAC__uint64 samples);
120 static FLAC__bool write_riff_wave_fmt_chunk(FILE *f, FLAC__bool is_waveformatextensible, unsigned bps, unsigned channels, unsigned sample_rate, FLAC__uint32 channel_mask);
121 static FLAC__bool write_aiff_form_comm_chunk(FILE *f, FLAC__uint64 samples, unsigned bps, unsigned channels, unsigned sample_rate);
122 static FLAC__bool write_little_endian_uint16(FILE *f, FLAC__uint16 val);
123 static FLAC__bool write_little_endian_uint32(FILE *f, FLAC__uint32 val);
124 static FLAC__bool write_big_endian_uint16(FILE *f, FLAC__uint16 val);
125 static FLAC__bool write_big_endian_uint32(FILE *f, FLAC__uint32 val);
126 static FLAC__bool write_sane_extended(FILE *f, unsigned val);
127 static FLAC__bool fixup_iff_headers(DecoderSession *d);
139 int flac__decode_aiff(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options)
182 int flac__decode_wav(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options)
225 int flac__decode_raw(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, raw_decode_options_t options)
271 FLAC__bool DecoderSession_construct(DecoderSession *d, FLAC__bool is_ogg, FLAC__bool use_first_serial_number, long serial_number, FLAC__bool is_aiff_out, FLAC__bool is_wave_out, FLAC__bool treat_warnings_as_errors, FLAC__bool continue_through_decode_errors, FLAC__bool channel_map_none, replaygain_synthesis_spec_t replaygain_synthesis_spec, FLAC__bool analysis_mode, analysis_options aopts, utils__SkipUntilSpecification *skip_specification, utils__SkipUntilSpecification *until_specification, utils__CueSpecification *cue_specification, foreign_metadata_t *foreign_metadata, const char *infilename, const char *outfilename)
348 void DecoderSession_destroy(DecoderSession *d, FLAC__bool error_occurred)
357 FLAC__bool DecoderSession_init_decoder(DecoderSession *decoder_session, const char *infilename)
407 FLAC__bool DecoderSession_process(DecoderSession *d)
500 FLAC__bool ok = true, md5_failure = false;
553 FLAC__bool canonicalize_until_specification(utils__SkipUntilSpecification *spec, const char *inbasefilename, unsigned sample_rate, FLAC__uint64 skip, FLAC__uint64 total_samples_in_input)
598 FLAC__bool write_iff_headers(FILE *f, DecoderSession *decoder_session, FLAC__uint64 samples)
601 const FLAC__bool is_waveformatextensible = decoder_session->is_wave_out && (decoder_session->channel_mask == 2 || decoder_session->channel_mask > 3 || decoder_session->bps%8 || decoder_session->channels > 2);
748 FLAC__bool write_riff_wave_fmt_chunk(FILE *f, FLAC__bool is_waveformatextensible, unsigned bps, unsigned channels, unsigned sample_rate, FLAC__uint32 channel_mask)
792 FLAC__bool write_aiff_form_comm_chunk(FILE *f, FLAC__uint64 samples, unsigned bps, unsigned channels, unsigned sample_rate)
817 FLAC__bool write_little_endian_uint16(FILE *f, FLAC__uint16 val)
827 FLAC__bool write_little_endian_uint32(FILE *f, FLAC__uint32 val)
838 FLAC__bool write_big_endian_uint16(FILE *f, FLAC__uint16 val)
848 FLAC__bool write_big_endian_uint32(FILE *f, FLAC__uint32 val)
859 FLAC__bool write_sane_extended(FILE *f, unsigned val)
890 FLAC__bool fixup_iff_headers(DecoderSession *d)
915 FLAC__bool is_big_endian = (decoder_session->is_aiff_out? true : (decoder_session->is_wave_out? false : decoder_session->is_big_endian));
916 FLAC__bool is_unsigned_samples = (decoder_session->is_aiff_out? false : (decoder_session->is_wave_out? bps<=8 : decoder_session->is_unsigned_samples));