diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-01-29 00:37:06 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-01-29 00:37:06 +0000 |
| commit | f213fd833a840fc97e3875979ae7dc7cbbc883b1 (patch) | |
| tree | bf585e448f263668ebaf39d37a8b90757c1dea91 /src/lib/image.cc | |
| parent | c58b1a4a478201b76a4f8491fa075cbe476af484 (diff) | |
Move Socket to dcpomatic_socket.{cc,h}.
Diffstat (limited to 'src/lib/image.cc')
| -rw-r--r-- | src/lib/image.cc | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/lib/image.cc b/src/lib/image.cc index d16de5e55..3df498c87 100644 --- a/src/lib/image.cc +++ b/src/lib/image.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net> + Copyright (C) 2012-2015 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 @@ -21,18 +21,20 @@ * @brief A class to describe a video image. */ -#include <iostream> -extern "C" { -#include <libswscale/swscale.h> -#include <libavutil/pixfmt.h> -#include <libavutil/pixdesc.h> -} #include "image.h" #include "exceptions.h" #include "scaler.h" #include "timer.h" #include "rect.h" +#include "util.h" #include "md5_digester.h" +#include "dcpomatic_socket.h" +extern "C" { +#include <libswscale/swscale.h> +#include <libavutil/pixfmt.h> +#include <libavutil/pixdesc.h> +} +#include <iostream> #include "i18n.h" |
