diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-10-25 22:58:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-10-25 22:58:51 +0100 |
| commit | 336ada36d701c60a2ddd9b0cf69622f92dfc3afc (patch) | |
| tree | 6ceeae67e456be065fc35c25cf1086e769364127 /src | |
| parent | 1df722e04cce91d7f410e7355a1c0bcf0db4d1c9 (diff) | |
Missing include and boost::
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film.h | 1 | ||||
| -rw-r--r-- | src/lib/j2k_still_encoder.cc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/film.h b/src/lib/film.h index c9d2c460d..b2daf0f22 100644 --- a/src/lib/film.h +++ b/src/lib/film.h @@ -31,6 +31,7 @@ #include <boost/thread/mutex.hpp> #include <boost/thread.hpp> #include <boost/signals2.hpp> +#include <boost/enable_shared_from_this.hpp> extern "C" { #include <libavcodec/avcodec.h> } diff --git a/src/lib/j2k_still_encoder.cc b/src/lib/j2k_still_encoder.cc index d8970d3a1..56fbb3152 100644 --- a/src/lib/j2k_still_encoder.cc +++ b/src/lib/j2k_still_encoder.cc @@ -74,7 +74,7 @@ J2KStillEncoder::process_video (shared_ptr<Image> yuv, int frame, shared_ptr<Sub } #endif #ifdef DVDOMATIC_WINDOWS - filesystem::copy_file (real, link); + boost::filesystem::copy_file (real, link); #endif } frame_done (0); |
