diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/reel_asset.cc | 10 | ||||
| -rw-r--r-- | src/reel_asset.h | 1 | ||||
| -rw-r--r-- | src/reel_mono_picture_asset.cc | 5 | ||||
| -rw-r--r-- | src/reel_mono_picture_asset.h | 3 | ||||
| -rw-r--r-- | src/reel_picture_asset.cc | 7 | ||||
| -rw-r--r-- | src/reel_picture_asset.h | 1 | ||||
| -rw-r--r-- | src/reel_stereo_picture_asset.cc | 7 | ||||
| -rw-r--r-- | src/reel_stereo_picture_asset.h | 3 |
8 files changed, 3 insertions, 34 deletions
diff --git a/src/reel_asset.cc b/src/reel_asset.cc index 72a1937c..797d1c40 100644 --- a/src/reel_asset.cc +++ b/src/reel_asset.cc @@ -48,16 +48,6 @@ using std::make_pair; using boost::shared_ptr; using namespace dcp; -ReelAsset::ReelAsset () - : _asset_ref (_id) - , _edit_rate (Fraction (24, 1)) - , _intrinsic_duration (0) - , _entry_point (0) - , _duration (0) -{ - -} - /** Construct a ReelAsset. * @param asset Asset that this ReelAsset refers to. * @param edit_rate Edit rate for the asset. diff --git a/src/reel_asset.h b/src/reel_asset.h index 42409ab9..974d9af0 100644 --- a/src/reel_asset.h +++ b/src/reel_asset.h @@ -65,7 +65,6 @@ class Asset; class ReelAsset : public Object { public: - ReelAsset (); ReelAsset (boost::shared_ptr<Asset> asset, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point); explicit ReelAsset (boost::shared_ptr<const cxml::Node>); diff --git a/src/reel_mono_picture_asset.cc b/src/reel_mono_picture_asset.cc index e894764e..36abb55e 100644 --- a/src/reel_mono_picture_asset.cc +++ b/src/reel_mono_picture_asset.cc @@ -43,11 +43,6 @@ using std::string; using boost::shared_ptr; using namespace dcp; -ReelMonoPictureAsset::ReelMonoPictureAsset () -{ - -} - ReelMonoPictureAsset::ReelMonoPictureAsset (boost::shared_ptr<MonoPictureAsset> asset, int64_t entry_point) : ReelPictureAsset (asset, entry_point) { diff --git a/src/reel_mono_picture_asset.h b/src/reel_mono_picture_asset.h index 4c5eaa08..099feafd 100644 --- a/src/reel_mono_picture_asset.h +++ b/src/reel_mono_picture_asset.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2017 Carl Hetherington <cth@carlh.net> + Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net> This file is part of libdcp. @@ -51,7 +51,6 @@ class MonoPictureAsset; class ReelMonoPictureAsset : public ReelPictureAsset { public: - ReelMonoPictureAsset (); ReelMonoPictureAsset (boost::shared_ptr<MonoPictureAsset> asset, int64_t entry_point); explicit ReelMonoPictureAsset (boost::shared_ptr<const cxml::Node>); diff --git a/src/reel_picture_asset.cc b/src/reel_picture_asset.cc index 1933c769..5eaf9157 100644 --- a/src/reel_picture_asset.cc +++ b/src/reel_picture_asset.cc @@ -52,13 +52,6 @@ using boost::dynamic_pointer_cast; using boost::optional; using namespace dcp; -ReelPictureAsset::ReelPictureAsset () - : _frame_rate (Fraction (24, 1)) - , _screen_aspect_ratio (Fraction (1998, 1080)) -{ - -} - ReelPictureAsset::ReelPictureAsset (shared_ptr<PictureAsset> asset, int64_t entry_point) : ReelAsset (asset, asset->edit_rate(), asset->intrinsic_duration(), entry_point) , ReelMXF (asset->key_id()) diff --git a/src/reel_picture_asset.h b/src/reel_picture_asset.h index a20c216f..20cf0255 100644 --- a/src/reel_picture_asset.h +++ b/src/reel_picture_asset.h @@ -50,7 +50,6 @@ namespace dcp { class ReelPictureAsset : public ReelAsset, public ReelMXF { public: - ReelPictureAsset (); ReelPictureAsset (boost::shared_ptr<PictureAsset> asset, int64_t entry_point); explicit ReelPictureAsset (boost::shared_ptr<const cxml::Node>); diff --git a/src/reel_stereo_picture_asset.cc b/src/reel_stereo_picture_asset.cc index f194cca0..8a169df2 100644 --- a/src/reel_stereo_picture_asset.cc +++ b/src/reel_stereo_picture_asset.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net> This file is part of libdcp. @@ -45,11 +45,6 @@ using std::make_pair; using boost::shared_ptr; using namespace dcp; -ReelStereoPictureAsset::ReelStereoPictureAsset () -{ - -} - ReelStereoPictureAsset::ReelStereoPictureAsset (boost::shared_ptr<StereoPictureAsset> mxf, int64_t entry_point) : ReelPictureAsset (mxf, entry_point) { diff --git a/src/reel_stereo_picture_asset.h b/src/reel_stereo_picture_asset.h index c7223495..80353b77 100644 --- a/src/reel_stereo_picture_asset.h +++ b/src/reel_stereo_picture_asset.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net> + Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net> This file is part of libdcp. @@ -51,7 +51,6 @@ class StereoPictureAsset; class ReelStereoPictureAsset : public ReelPictureAsset { public: - ReelStereoPictureAsset (); ReelStereoPictureAsset (boost::shared_ptr<StereoPictureAsset> content, int64_t entry_point); explicit ReelStereoPictureAsset (boost::shared_ptr<const cxml::Node>); |
