From a92f6005ef1c9bba7db6751a32c3feb1b066bfba Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Tue, 4 Jun 2002 06:00:09 +0000 Subject: [PATCH] add inherited get methods from stream decoder in file decoder also --- include/FLAC++/decoder.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/include/FLAC++/decoder.h b/include/FLAC++/decoder.h index ecf545a..02c8992 100644 --- a/include/FLAC++/decoder.h +++ b/include/FLAC++/decoder.h @@ -147,11 +147,19 @@ namespace FLAC { State get_state() const; bool get_md5_checking() const; + unsigned get_channels() const; + ::FLAC__ChannelAssignment get_channel_assignment() const; + unsigned get_bits_per_sample() const; + unsigned get_sample_rate() const; + unsigned get_blocksize() const; State init(); bool finish(); + bool flush(); + bool reset(); + bool process_whole_stream(); bool process_metadata(); bool process_one_frame(); @@ -218,6 +226,11 @@ namespace FLAC { State get_state() const; bool get_md5_checking() const; + unsigned get_channels() const; + ::FLAC__ChannelAssignment get_channel_assignment() const; + unsigned get_bits_per_sample() const; + unsigned get_sample_rate() const; + unsigned get_blocksize() const; State init(); -- 2.7.4