diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-17 22:16:05 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-17 22:16:05 +0000 |
| commit | 9fd79fb05fa47833ed431d83d73fd6d9a4a9f774 (patch) | |
| tree | ce80b7905738eb342536f48ebb1712ad0f47ab1f /src/reel.h | |
| parent | f389d903e967f44a5d6eed60df48bd5a89994bb2 (diff) | |
Asset -> MXF in some cases.
Diffstat (limited to 'src/reel.h')
| -rw-r--r-- | src/reel.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -33,8 +33,8 @@ namespace xmlpp { namespace dcp { -class PictureAsset; -class SoundAsset; +class PictureMXF; +class SoundMXF; class SubtitleAsset; class KDM; @@ -43,8 +43,8 @@ class Reel { public: Reel ( - boost::shared_ptr<PictureAsset> picture, - boost::shared_ptr<SoundAsset> sound, + boost::shared_ptr<PictureMXF> picture, + boost::shared_ptr<SoundMXF> sound, boost::shared_ptr<SubtitleAsset> subtitle ) : _main_picture (picture) @@ -52,11 +52,11 @@ public: , _main_subtitle (subtitle) {} - boost::shared_ptr<const PictureAsset> main_picture () const { + boost::shared_ptr<const PictureMXF> main_picture () const { return _main_picture; } - boost::shared_ptr<const SoundAsset> main_sound () const { + boost::shared_ptr<const SoundMXF> main_sound () const { return _main_sound; } @@ -75,8 +75,8 @@ public: void add_kdm (KDM const &); private: - boost::shared_ptr<PictureAsset> _main_picture; - boost::shared_ptr<SoundAsset> _main_sound; + boost::shared_ptr<PictureMXF> _main_picture; + boost::shared_ptr<SoundMXF> _main_sound; boost::shared_ptr<SubtitleAsset> _main_subtitle; }; |
