Merge branch '2.0' of ssh://main.carlh.net/home/carl/git/dcpomatic into 2.0
[dcpomatic.git] / src / lib / raw_image_proxy.cc
1 /*
2     Copyright (C) 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 extern "C" {
21 #include <libavutil/pixfmt.h>
22 }
23 #include <libcxml/cxml.h>
24 #include <dcp/util.h>
25 #include <dcp/raw_convert.h>
26 #include "raw_image_proxy.h"
27 #include "image.h"
28
29 #include "i18n.h"
30
31 using std::string;
32 using boost::shared_ptr;
33
34 RawImageProxy::RawImageProxy (shared_ptr<Image> image)
35         : _image (image)
36 {
37
38 }
39
40 RawImageProxy::RawImageProxy (shared_ptr<cxml::Node> xml, shared_ptr<Socket> socket)
41 {
42         dcp::Size size (
43                 xml->number_child<int> ("Width"), xml->number_child<int> ("Height")
44                 );
45
46         _image.reset (new Image (static_cast<AVPixelFormat> (xml->number_child<int> ("PixelFormat")), size, true));
47         _image->read_from_socket (socket);
48 }
49
50 shared_ptr<Image>
51 RawImageProxy::image () const
52 {
53         return _image;
54 }
55
56 void
57 RawImageProxy::add_metadata (xmlpp::Node* node) const
58 {
59         node->add_child("Type")->add_child_text (N_("Raw"));
60         node->add_child("Width")->add_child_text (dcp::raw_convert<string> (_image->size().width));
61         node->add_child("Height")->add_child_text (dcp::raw_convert<string> (_image->size().height));
62         node->add_child("PixelFormat")->add_child_text (dcp::raw_convert<string> (_image->pixel_format ()));
63 }
64
65 void
66 RawImageProxy::send_binary (shared_ptr<Socket> socket) const
67 {
68         _image->write_to_socket (socket);
69 }