summaryrefslogtreecommitdiff
path: root/src/sound_asset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound_asset.h')
-rw-r--r--src/sound_asset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound_asset.h b/src/sound_asset.h
index 73734f9f..78b80bc8 100644
--- a/src/sound_asset.h
+++ b/src/sound_asset.h
@@ -33,6 +33,7 @@ namespace dcp
class SoundFrame;
class SoundAssetWriter;
+class SoundAssetReader;
/** @class SoundAsset
* @brief Representation of a sound asset
@@ -44,6 +45,7 @@ public:
SoundAsset (Fraction edit_rate, int sampling_rate, int channels);
boost::shared_ptr<SoundAssetWriter> start_write (boost::filesystem::path file, Standard standard);
+ boost::shared_ptr<SoundAssetReader> start_read () const;
bool equals (
boost::shared_ptr<const Asset> other,
@@ -51,8 +53,6 @@ public:
NoteHandler note
) const;
- boost::shared_ptr<const SoundFrame> get_frame (int n) const;
-
/** @return number of channels */
int channels () const {
return _channels;