summaryrefslogtreecommitdiff
path: root/src/sound_frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound_frame.h')
-rw-r--r--src/sound_frame.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/sound_frame.h b/src/sound_frame.h
index 0f5021e2..72ab5925 100644
--- a/src/sound_frame.h
+++ b/src/sound_frame.h
@@ -54,10 +54,16 @@ public:
SoundFrame (ASDCP::PCM::MXFReader* reader, int n, std::shared_ptr<const DecryptionContext> c, bool check_hmac);
int channels () const;
int samples () const;
+
+ int bits() const {
+ return _bits;
+ }
+
int32_t get (int channel, int sample) const;
private:
- int _channels = 0;
+ int _channels;
+ int _bits;
};