diff options
Diffstat (limited to 'src/sound_mxf.cc')
| -rw-r--r-- | src/sound_mxf.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sound_mxf.cc b/src/sound_mxf.cc index e338c161..6e952bd0 100644 --- a/src/sound_mxf.cc +++ b/src/sound_mxf.cc @@ -44,6 +44,7 @@ using namespace dcp; SoundMXF::SoundMXF (boost::filesystem::path file) : MXF (file) + , _intrinsic_duration (0) , _channels (0) , _sampling_rate (0) { @@ -74,7 +75,8 @@ SoundMXF::SoundMXF (boost::filesystem::path file) } SoundMXF::SoundMXF (Fraction edit_rate, int sampling_rate, int channels) - : MXF (edit_rate) + : _edit_rate (edit_rate) + , _intrinsic_duration (0) , _channels (channels) , _sampling_rate (sampling_rate) { |
