diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-20 14:36:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-20 14:36:16 +0100 |
| commit | 454e76146a5bd522e47ebbedd490e89ef95dd186 (patch) | |
| tree | 680f06149597f5ca28c3235e8f570e953b8b6ec3 /src/reel_sound_asset.cc | |
| parent | b371e448833d5a2bac837698c756f27786e38737 (diff) | |
Put ReelAsset key id into a new ReelMXFAsset.
Diffstat (limited to 'src/reel_sound_asset.cc')
| -rw-r--r-- | src/reel_sound_asset.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/reel_sound_asset.cc b/src/reel_sound_asset.cc index c9af664c..ee308fa0 100644 --- a/src/reel_sound_asset.cc +++ b/src/reel_sound_asset.cc @@ -28,14 +28,14 @@ using std::string; using boost::shared_ptr; using namespace dcp; -ReelSoundAsset::ReelSoundAsset (boost::shared_ptr<SoundMXF> content, int64_t entry_point) - : ReelAsset (content, content->edit_rate(), content->intrinsic_duration(), entry_point) +ReelSoundAsset::ReelSoundAsset (shared_ptr<SoundMXF> content, int64_t entry_point) + : ReelMXFAsset (content, content->edit_rate(), content->intrinsic_duration(), entry_point) { } -ReelSoundAsset::ReelSoundAsset (boost::shared_ptr<const cxml::Node> node) - : ReelAsset (node) +ReelSoundAsset::ReelSoundAsset (shared_ptr<const cxml::Node> node) + : ReelMXFAsset (node) { node->ignore_child ("Language"); node->done (); |
