Merge branch 'video-player' of /home/carl/git/dvdomatic into video-player
[dcpomatic.git] / src / tools / servomatictest.cc
1 /*
2     Copyright (C) 2012 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 <iostream>
21 #include <iomanip>
22 #include <exception>
23 #include <getopt.h>
24 #include "format.h"
25 #include "film.h"
26 #include "filter.h"
27 #include "util.h"
28 #include "scaler.h"
29 #include "server.h"
30 #include "dcp_video_frame.h"
31 #include "options.h"
32 #include "decoder.h"
33 #include "exceptions.h"
34 #include "scaler.h"
35 #include "log.h"
36 #include "decoder_factory.h"
37
38 using namespace std;
39 using namespace boost;
40
41 static Server* server;
42 static Log log_ ("servomatictest.log");
43
44 void
45 process_video (shared_ptr<Image> image, bool, int frame)
46 {
47         shared_ptr<DCPVideoFrame> local (new DCPVideoFrame (image, Size (1024, 1024), 0, Scaler::from_id ("bicubic"), frame, 24, "", 0, 250000000, &log_));
48         shared_ptr<DCPVideoFrame> remote (new DCPVideoFrame (image, Size (1024, 1024), 0, Scaler::from_id ("bicubic"), frame, 24, "", 0, 250000000, &log_));
49
50         cout << "Frame " << frame << ": ";
51         cout.flush ();
52
53         shared_ptr<EncodedData> local_encoded = local->encode_locally ();
54         shared_ptr<EncodedData> remote_encoded;
55
56         string remote_error;
57         try {
58                 remote_encoded = remote->encode_remotely (server);
59         } catch (NetworkError& e) {
60                 remote_error = e.what ();
61         }
62
63         if (!remote_error.empty ()) {
64                 cout << "\033[0;31mnetwork problem: " << remote_error << "\033[0m\n";
65                 return;
66         }
67
68         if (local_encoded->size() != remote_encoded->size()) {
69                 cout << "\033[0;31msizes differ\033[0m\n";
70                 return;
71         }
72                 
73         uint8_t* p = local_encoded->data();
74         uint8_t* q = remote_encoded->data();
75         for (int i = 0; i < local_encoded->size(); ++i) {
76                 if (*p++ != *q++) {
77                         cout << "\033[0;31mdata differ\033[0m at byte " << i << "\n";
78                         return;
79                 }
80         }
81
82         cout << "\033[0;32mgood\033[0m\n";
83 }
84
85 static void
86 help (string n)
87 {
88         cerr << "Syntax: " << n << " [--help] --film <film> --server <host>\n";
89         exit (EXIT_FAILURE);
90 }
91
92 int
93 main (int argc, char* argv[])
94 {
95         string film_dir;
96         string server_host;
97
98         while (1) {
99                 static struct option long_options[] = {
100                         { "help", no_argument, 0, 'h'},
101                         { "server", required_argument, 0, 's'},
102                         { "film", required_argument, 0, 'f'},
103                         { 0, 0, 0, 0 }
104                 };
105
106                 int option_index = 0;
107                 int c = getopt_long (argc, argv, "hs:f:", long_options, &option_index);
108
109                 if (c == -1) {
110                         break;
111                 }
112
113                 switch (c) {
114                 case 'h':
115                         help (argv[0]);
116                         exit (EXIT_SUCCESS);
117                 case 's':
118                         server_host = optarg;
119                         break;
120                 case 'f':
121                         film_dir = optarg;
122                         break;
123                 }
124         }
125         
126         if (server_host.empty() || film_dir.empty()) {
127                 help (argv[0]);
128                 exit (EXIT_FAILURE);
129         }
130
131         dvdomatic_setup ();
132
133         server = new Server (server_host, 1);
134         Film film (film_dir, true);
135
136         shared_ptr<Options> opt (new Options ("fred", "jim", "sheila"));
137         opt->out_size = Size (1024, 1024);
138         opt->decode_audio = false;
139
140         shared_ptr<Decoder> decoder = decoder_factory (film.state_copy(), opt, 0, &log_);
141         try {
142                 decoder->Video.connect (sigc::ptr_fun (process_video));
143                 decoder->go ();
144         } catch (std::exception& e) {
145                 cerr << "Error: " << e.what() << "\n";
146         }
147
148         return 0;
149 }