First cut at J2K import.
[dcpomatic.git] / src / lib / image_examiner.cc
1 /*
2     Copyright (C) 2013-2014 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 "image_content.h"
21 #include "image_examiner.h"
22 #include "film.h"
23 #include "job.h"
24 #include "exceptions.h"
25 #include "config.h"
26 #include "cross.h"
27 #include <dcp/xyz_frame.h>
28 #include <Magick++.h>
29 #include <iostream>
30
31 #include "i18n.h"
32
33 using std::cout;
34 using std::list;
35 using std::sort;
36 using boost::shared_ptr;
37
38 ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const ImageContent> content, shared_ptr<Job>)
39         : _film (film)
40         , _image_content (content)
41 {
42 #ifdef DCPOMATIC_IMAGE_MAGICK   
43         using namespace MagickCore;
44 #endif
45         boost::filesystem::path path = content->path(0).string ();
46         if (valid_j2k_file (path)) {
47                 boost::uintmax_t size = boost::filesystem::file_size (path);
48                 uint8_t* buffer = new uint8_t[size];
49                 FILE* f = fopen_boost (path, "r");
50                 if (!f) {
51                         throw FileError ("Could not open file for reading", path);
52                 }
53                 fread (buffer, 1, size, f);
54                 fclose (f);
55                 _video_size = dcp::decompress_j2k (buffer, size, 0)->size ();
56                 delete[] buffer;
57         } else {
58                 Magick::Image* image = new Magick::Image (content->path(0).string());
59                 _video_size = dcp::Size (image->columns(), image->rows());
60                 delete image;
61         }
62
63         if (content->still ()) {
64                 _video_length = ContentTime::from_seconds (Config::instance()->default_still_length());
65         } else {
66                 _video_length = ContentTime::from_frames (_image_content->number_of_paths (), video_frame_rate ());
67         }
68 }
69
70 dcp::Size
71 ImageExaminer::video_size () const
72 {
73         return _video_size.get ();
74 }
75
76 float
77 ImageExaminer::video_frame_rate () const
78 {
79         boost::shared_ptr<const Film> f = _film.lock ();
80         if (!f) {
81                 return 24;
82         }
83
84         return f->video_frame_rate ();
85 }