X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fffmpeg_content.h;h=37746ac9db213ed73ec9a63931347c3ed2475360;hb=308488324dbc4d8b709d3fb1dc9fee0479346c21;hp=6ab95d2fe9d2bf53a08acd050845721ed40fc1a1;hpb=362ed9ee4f73bee21b3ef8d3b449bb8e8877f501;p=dcpomatic.git diff --git a/src/lib/ffmpeg_content.h b/src/lib/ffmpeg_content.h index 6ab95d2fe..37746ac9d 100644 --- a/src/lib/ffmpeg_content.h +++ b/src/lib/ffmpeg_content.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2014 Carl Hetherington 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 @@ -21,6 +21,7 @@ #define DCPOMATIC_FFMPEG_CONTENT_H #include +#include #include "video_content.h" #include "audio_content.h" #include "subtitle_content.h" @@ -87,7 +88,7 @@ public: int frame_rate; int channels; AudioMapping mapping; - boost::optional first_audio; + boost::optional first_audio; private: friend class ffmpeg_pts_offset_test; @@ -139,15 +140,14 @@ public: std::string technical_summary () const; std::string information () const; void as_xml (xmlpp::Node *) const; - Time full_length () const; + DCPTime full_length () const; std::string identifier () const; /* AudioContent */ int audio_channels () const; - AudioContent::Frame audio_length () const; - int content_audio_frame_rate () const; - int output_audio_frame_rate () const; + ContentTime audio_length () const; + int audio_frame_rate () const; AudioMapping audio_mapping () const; void set_audio_mapping (AudioMapping); boost::filesystem::path audio_analysis_path () const; @@ -182,7 +182,7 @@ public: void set_subtitle_stream (boost::shared_ptr); void set_audio_stream (boost::shared_ptr); - boost::optional first_video () const { + boost::optional first_video () const { boost::mutex::scoped_lock lm (_mutex); return _first_video; } @@ -194,7 +194,7 @@ private: boost::shared_ptr _subtitle_stream; std::vector > _audio_streams; boost::shared_ptr _audio_stream; - boost::optional _first_video; + boost::optional _first_video; /** Video filters that should be used when generating DCPs */ std::vector _filters; };