Fix erroneous extra character.
[libdcp.git] / src / sound_asset.h
index 5a7dc21493aeb919dd8b917313e3223185a16856..73734f9fa67ce5a0ac4209ce19a8836343d2c34a 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -44,7 +44,7 @@ public:
        SoundAsset (Fraction edit_rate, int sampling_rate, int channels);
 
        boost::shared_ptr<SoundAssetWriter> start_write (boost::filesystem::path file, Standard standard);
-       
+
        bool equals (
                boost::shared_ptr<const Asset> other,
                EqualityOptions opt,
@@ -70,10 +70,12 @@ public:
        int64_t intrinsic_duration () const {
                return _intrinsic_duration;
        }
-       
+
+       static bool valid_mxf (boost::filesystem::path);
+
 private:
        friend class SoundAssetWriter;
-       
+
        std::string pkl_type (Standard standard) const;
 
        Fraction _edit_rate;