add inherited get methods from stream decoder in file decoder also
This commit is contained in:
parent
83761b9ffd
commit
a92f6005ef
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user