summaryrefslogtreecommitdiff
path: root/src/lib/encoder_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/encoder_factory.cc')
-rw-r--r--src/lib/encoder_factory.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/encoder_factory.cc b/src/lib/encoder_factory.cc
index df45535cf..2da021ad8 100644
--- a/src/lib/encoder_factory.cc
+++ b/src/lib/encoder_factory.cc
@@ -26,13 +26,12 @@
#include "j2k_still_encoder.h"
#include "film.h"
-using namespace std;
-using namespace boost;
+using boost::shared_ptr;
shared_ptr<Encoder>
encoder_factory (shared_ptr<const Film> f, shared_ptr<const Options> o)
{
- if (!filesystem::is_directory (f->content_path()) && f->content_type() == STILL) {
+ if (!boost::filesystem::is_directory (f->content_path()) && f->content_type() == STILL) {
return shared_ptr<Encoder> (new J2KStillEncoder (f, o));
}