Lines Matching refs:StreamInfo
64 ret = new StreamInfo(object, /*copy=*/false); in construct_block()
97 const StreamInfo *streaminfo = dynamic_cast<const StreamInfo *>(object); in clone()
107 return new StreamInfo(*streaminfo); in clone()
234 StreamInfo::StreamInfo(): in StreamInfo() function in FLAC::Metadata::StreamInfo
238 StreamInfo::~StreamInfo() in ~StreamInfo()
241 uint32_t StreamInfo::get_min_blocksize() const in get_min_blocksize()
247 uint32_t StreamInfo::get_max_blocksize() const in get_max_blocksize()
253 uint32_t StreamInfo::get_min_framesize() const in get_min_framesize()
259 uint32_t StreamInfo::get_max_framesize() const in get_max_framesize()
265 uint32_t StreamInfo::get_sample_rate() const in get_sample_rate()
271 uint32_t StreamInfo::get_channels() const in get_channels()
277 uint32_t StreamInfo::get_bits_per_sample() const in get_bits_per_sample()
283 FLAC__uint64 StreamInfo::get_total_samples() const in get_total_samples()
289 const FLAC__byte *StreamInfo::get_md5sum() const in get_md5sum()
295 void StreamInfo::set_min_blocksize(uint32_t value) in set_min_blocksize()
303 void StreamInfo::set_max_blocksize(uint32_t value) in set_max_blocksize()
311 void StreamInfo::set_min_framesize(uint32_t value) in set_min_framesize()
318 void StreamInfo::set_max_framesize(uint32_t value) in set_max_framesize()
325 void StreamInfo::set_sample_rate(uint32_t value) in set_sample_rate()
332 void StreamInfo::set_channels(uint32_t value) in set_channels()
340 void StreamInfo::set_bits_per_sample(uint32_t value) in set_bits_per_sample()
348 void StreamInfo::set_total_samples(FLAC__uint64 value) in set_total_samples()
355 void StreamInfo::set_md5sum(const FLAC__byte value[16]) in set_md5sum()
1334 FLACPP_API bool get_streaminfo(const char *filename, StreamInfo &streaminfo) in get_streaminfo()