summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--decoder.cpp3
-rw-r--r--decoder.h4
-rw-r--r--encoder.cpp3
-rw-r--r--encoder.h4
4 files changed, 6 insertions, 8 deletions
diff --git a/decoder.cpp b/decoder.cpp
index cffb8cf..420d538 100644
--- a/decoder.cpp
+++ b/decoder.cpp
@@ -1,6 +1,9 @@
#include "decoder.h"
#include "decoders/mpg123_decoder.h"
+#include <boost/function.hpp>
+#include <boost/functional/factory.hpp>
+
#include <map>
DecoderFilter::DecoderFilter(DecoderBase::p decoder_) {
diff --git a/decoder.h b/decoder.h
index 3694053..c894065 100644
--- a/decoder.h
+++ b/decoder.h
@@ -1,10 +1,6 @@
#ifndef DECODER_H
#define DECODER_H
-#include <boost/cstdint.hpp>
-#include <boost/function.hpp>
-#include <boost/functional/factory.hpp>
-#include <boost/functional/value_factory.hpp>
#include <boost/iostreams/concepts.hpp>
#include <boost/iostreams/operations.hpp>
#include <boost/shared_ptr.hpp>
diff --git a/encoder.cpp b/encoder.cpp
index d0566fb..0c0350a 100644
--- a/encoder.cpp
+++ b/encoder.cpp
@@ -1,6 +1,9 @@
#include "encoder.h"
#include "encoders/lame_encoder.h"
+#include <boost/function.hpp>
+#include <boost/functional/factory.hpp>
+
#include <map>
EncoderFilter::EncoderFilter(EncoderBase::p encoder_) {
diff --git a/encoder.h b/encoder.h
index 1ff0879..c0e3d6a 100644
--- a/encoder.h
+++ b/encoder.h
@@ -1,10 +1,6 @@
#ifndef ENCODER_H
#define ENCODER_H
-#include <boost/cstdint.hpp>
-#include <boost/function.hpp>
-#include <boost/functional/factory.hpp>
-#include <boost/functional/value_factory.hpp>
#include <boost/iostreams/concepts.hpp>
#include <boost/iostreams/operations.hpp>
#include <boost/shared_ptr.hpp>