summaryrefslogtreecommitdiff
path: root/src/sound_asset_writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound_asset_writer.h')
-rw-r--r--src/sound_asset_writer.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/sound_asset_writer.h b/src/sound_asset_writer.h
index f1b1514d..d3b260e6 100644
--- a/src/sound_asset_writer.h
+++ b/src/sound_asset_writer.h
@@ -70,8 +70,9 @@ private:
friend class SoundAsset;
friend struct ::sync_test1;
- SoundAssetWriter (SoundAsset *, boost::filesystem::path, bool sync);
+ SoundAssetWriter (SoundAsset *, boost::filesystem::path, std::vector<Channel> active_channels, bool sync);
+ void start ();
void write_current_frame ();
std::vector<bool> create_sync_packets ();
@@ -90,6 +91,8 @@ private:
/** index of the sync packet (0-3) which starts the next edit unit */
int _sync_packet;
FSK _fsk;
+
+ std::vector<Channel> _active_channels;
};
}