Support for keeping video in sequence when changing lengths; tie selection in timelin...
[dcpomatic.git] / src / lib / imagemagick_content.cc
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <libcxml/cxml.h>
21 #include "imagemagick_content.h"
22 #include "imagemagick_decoder.h"
23 #include "config.h"
24 #include "compose.hpp"
25
26 #include "i18n.h"
27
28 using std::string;
29 using std::stringstream;
30 using boost::shared_ptr;
31
32 ImageMagickContent::ImageMagickContent (shared_ptr<const Film> f, boost::filesystem::path p)
33         : Content (f, p)
34         , VideoContent (f, p)
35 {
36
37 }
38
39 ImageMagickContent::ImageMagickContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
40         : Content (f, node)
41         , VideoContent (f, node)
42 {
43         
44 }
45
46 string
47 ImageMagickContent::summary () const
48 {
49         return String::compose (_("Image: %1"), file().filename().string());
50 }
51
52 bool
53 ImageMagickContent::valid_file (boost::filesystem::path f)
54 {
55         string ext = f.extension().string();
56         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
57         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp");
58 }
59
60 void
61 ImageMagickContent::as_xml (xmlpp::Node* node) const
62 {
63         node->add_child("Type")->add_child_text ("ImageMagick");
64         Content::as_xml (node);
65         VideoContent::as_xml (node);
66 }
67
68 void
69 ImageMagickContent::examine (shared_ptr<Job> job)
70 {
71         Content::examine (job);
72
73         shared_ptr<const Film> film = _film.lock ();
74         assert (film);
75         
76         shared_ptr<ImageMagickDecoder> decoder (new ImageMagickDecoder (film, shared_from_this()));
77
78         set_video_length (Config::instance()->default_still_length() * 24);
79         take_from_video_decoder (decoder);
80 }
81
82 shared_ptr<Content>
83 ImageMagickContent::clone () const
84 {
85         return shared_ptr<Content> (new ImageMagickContent (*this));
86 }
87
88 void
89 ImageMagickContent::set_video_length (ContentVideoFrame len)
90 {
91         {
92                 boost::mutex::scoped_lock lm (_mutex);
93                 _video_length = len;
94         }
95
96         signal_changed (ContentProperty::LENGTH);
97 }
98
99 Time
100 ImageMagickContent::length () const
101 {
102         shared_ptr<const Film> film = _film.lock ();
103         assert (film);
104         
105         FrameRateConversion frc (24, film->dcp_video_frame_rate ());
106         return video_length() * frc.factor() * TIME_HZ / film->dcp_video_frame_rate ();
107 }