mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:17:46 +00:00
LibAudio: Add accessor to "real" PCM sample format of loader
This commit is contained in:
parent
cd2e890304
commit
de17cd018e
1 changed files with 1 additions and 0 deletions
|
@ -106,6 +106,7 @@ public:
|
|||
u16 num_channels() const { return m_plugin->num_channels(); }
|
||||
DeprecatedString format_name() const { return m_plugin->format_name(); }
|
||||
u16 bits_per_sample() const { return pcm_bits_per_sample(m_plugin->pcm_format()); }
|
||||
PcmSampleFormat pcm_format() const { return m_plugin->pcm_format(); }
|
||||
Metadata const& metadata() const { return m_plugin->metadata(); }
|
||||
Vector<PictureData> const& pictures() const { return m_plugin->pictures(); };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue