diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-08-29 21:50:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-08-29 21:50:23 +0100 |
| commit | c78ab3cbeb072f0efa2824cb39bfad5e76d53874 (patch) | |
| tree | a4377f7117e61fe378370fa1dcf6695723e034d0 /src | |
| parent | 944cee945a1f923614783471d472db0896f6877a (diff) | |
Remove some old run/ scripts. Make server test build again.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/server_test.cc (renamed from src/tools/servomatictest.cc) | 52 | ||||
| -rw-r--r-- | src/tools/test.cc | 34 | ||||
| -rw-r--r-- | src/tools/wscript | 2 |
3 files changed, 22 insertions, 66 deletions
diff --git a/src/tools/servomatictest.cc b/src/tools/server_test.cc index 88974eed7..029e62614 100644 --- a/src/tools/servomatictest.cc +++ b/src/tools/server_test.cc @@ -21,19 +21,19 @@ #include <iomanip> #include <exception> #include <getopt.h> -#include "format.h" -#include "film.h" -#include "filter.h" -#include "util.h" -#include "scaler.h" -#include "server.h" -#include "dcp_video_frame.h" -#include "decoder.h" -#include "exceptions.h" -#include "scaler.h" -#include "log.h" -#include "video_decoder.h" -#include "player.h" +#include "lib/ratio.h" +#include "lib/film.h" +#include "lib/filter.h" +#include "lib/util.h" +#include "lib/scaler.h" +#include "lib/server.h" +#include "lib/dcp_video_frame.h" +#include "lib/decoder.h" +#include "lib/exceptions.h" +#include "lib/scaler.h" +#include "lib/log.h" +#include "lib/video_decoder.h" +#include "lib/player.h" using std::cout; using std::cerr; @@ -41,26 +41,16 @@ using std::string; using std::pair; using boost::shared_ptr; +static shared_ptr<Film> film; static ServerDescription* server; static shared_ptr<FileLog> log_ (new FileLog ("servomatictest.log")); static int frame = 0; void -process_video (shared_ptr<const Image> image, bool, shared_ptr<Subtitle> sub) +process_video (shared_ptr<const Image> image, Eyes eyes, ColourConversion conversion, Time) { - shared_ptr<DCPVideoFrame> local ( - new DCPVideoFrame ( - image, sub, - libdcp::Size (1024, 1024), 0, 0, 0, - Scaler::from_id ("bicubic"), frame, 24, "", 0, 250000000, log_) - ); - - shared_ptr<DCPVideoFrame> remote ( - new DCPVideoFrame ( - image, sub, - libdcp::Size (1024, 1024), 0, 0, 0, - Scaler::from_id ("bicubic"), frame, 24, "", 0, 250000000, log_) - ); + shared_ptr<DCPVideoFrame> local (new DCPVideoFrame (image, frame, eyes, conversion, film->video_frame_rate(), 250000000, log_)); + shared_ptr<DCPVideoFrame> remote (new DCPVideoFrame (image, frame, eyes, conversion, film->video_frame_rate(), 250000000, log_)); cout << "Frame " << frame << ": "; cout.flush (); @@ -72,7 +62,7 @@ process_video (shared_ptr<const Image> image, bool, shared_ptr<Subtitle> sub) string remote_error; try { - remote_encoded = remote->encode_remotely (server); + remote_encoded = remote->encode_remotely (*server); } catch (NetworkError& e) { remote_error = e.what (); } @@ -148,14 +138,14 @@ main (int argc, char* argv[]) dcpomatic_setup (); server = new ServerDescription (server_host, 1); - shared_ptr<Film> film (new Film (film_dir)); + film.reset (new Film (film_dir)); film->read_metadata (); - shared_ptr<Player> player = film->player (); + shared_ptr<Player> player = film->make_player (); player->disable_audio (); try { - player->Video.connect (boost::bind (process_video, _1, _2, _3)); + player->Video.connect (boost::bind (process_video, _1, _2, _3, _5)); bool done = false; while (!done) { done = player->pass (); diff --git a/src/tools/test.cc b/src/tools/test.cc deleted file mode 100644 index 4baaeb73f..000000000 --- a/src/tools/test.cc +++ /dev/null @@ -1,34 +0,0 @@ -/* - Copyright (C) 2012 Carl Hetherington <cth@carlh.net> - - 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 - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -*/ - -#include <stdint.h> -#include <boost/shared_ptr.hpp> -#include "image.h" -#include "server.h" - -using namespace boost; - -int main () -{ - uint8_t* rgb = new uint8_t[256]; - shared_ptr<Image> image (new Image (rgb, 0, 32, 32, 24)); - Server* s = new Server ("localhost", 2); - image->encode_remotely (s); - return 0; -} diff --git a/src/tools/wscript b/src/tools/wscript index c7ab44604..42fc90adb 100644 --- a/src/tools/wscript +++ b/src/tools/wscript @@ -4,7 +4,7 @@ from waflib import Logs import i18n def build(bld): - for t in ['dcpomatic_cli', 'dcpomatic_server_cli']: + for t in ['dcpomatic_cli', 'dcpomatic_server_cli', 'server_test']: obj = bld(features = 'cxx cxxprogram') obj.uselib = 'BOOST_THREAD OPENJPEG DCP CXML AVFORMAT AVFILTER AVCODEC AVUTIL SWSCALE POSTPROC WXWIDGETS' obj.includes = ['..'] |
