diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-09-08 23:55:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-09-08 23:55:37 +0100 |
| commit | fe83eb5293fa4027856f6ee9faec7bfc8288badf (patch) | |
| tree | 8314bbbb6b37a2fb7cb13787276b6fb9474e99bd /src/sound_asset.cc | |
| parent | 3e24098b32d6160759378e671bfca241dd9025d9 (diff) | |
Add channel assignment support for SMPTE DCPs.
Diffstat (limited to 'src/sound_asset.cc')
| -rw-r--r-- | src/sound_asset.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound_asset.cc b/src/sound_asset.cc index 11fd4b2f..2202311a 100644 --- a/src/sound_asset.cc +++ b/src/sound_asset.cc @@ -192,10 +192,10 @@ SoundAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, NoteHand } shared_ptr<SoundAssetWriter> -SoundAsset::start_write (boost::filesystem::path file, Standard standard) +SoundAsset::start_write (boost::filesystem::path file, Standard standard, ChannelAssignment assign) { /* XXX: can't we use a shared_ptr here? */ - return shared_ptr<SoundAssetWriter> (new SoundAssetWriter (this, file, standard)); + return shared_ptr<SoundAssetWriter> (new SoundAssetWriter (this, file, standard, assign)); } shared_ptr<SoundAssetReader> |
