Fix problems with FFmpeg files that have all-zero stream IDs.
[dcpomatic.git] / src / lib / content.h
index 626e270bdfedd07e5d4b3897a5cf81873cc4823e..9cf6d866ab04906b3288188792c66f9403b8592e 100644 (file)
@@ -48,9 +48,11 @@ public:
 class Content : public boost::enable_shared_from_this<Content>, public boost::noncopyable
 {
 public:
+       Content (boost::shared_ptr<const Film>);
        Content (boost::shared_ptr<const Film>, Time);
        Content (boost::shared_ptr<const Film>, boost::filesystem::path);
        Content (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>);
+       Content (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
        virtual ~Content () {}
        
        virtual void examine (boost::shared_ptr<Job>);
@@ -64,12 +66,24 @@ public:
        boost::shared_ptr<Content> clone () const;
 
        void set_path (boost::filesystem::path);
-       
-       boost::filesystem::path path () const {
+
+       std::string path_summary () const;
+
+       std::vector<boost::filesystem::path> paths () const {
+               boost::mutex::scoped_lock lm (_mutex);
+               return _paths;
+       }
+
+       size_t number_of_paths () const {
                boost::mutex::scoped_lock lm (_mutex);
-               return _path;
+               return _paths.size ();
        }
 
+       boost::filesystem::path path (size_t i) const {
+               boost::mutex::scoped_lock lm (_mutex);
+               return _paths[i];
+       }
+       
        bool path_valid () const;
 
        /** @return MD5 digest of the content's file(s) */
@@ -126,9 +140,10 @@ protected:
        */
        mutable boost::mutex _mutex;
 
+       /** Paths of our data files */
+       std::vector<boost::filesystem::path> _paths;
+       
 private:
-       /** Path of a file or a directory containing files */
-       boost::filesystem::path _path;
        std::string _digest;
        Time _position;
        Time _trim_start;