summaryrefslogtreecommitdiff
path: root/transcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'transcode.h')
-rw-r--r--transcode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/transcode.h b/transcode.h
index 70d0113..56f16c1 100644
--- a/transcode.h
+++ b/transcode.h
@@ -11,11 +11,11 @@ class Transcoder {
private:
std::string path;
HTTP::Connection::p res;
- DecoderBase& decoder;
- EncoderBase& encoder;
+ DecoderFilter::p decoder;
+ EncoderFilter::p encoder;
public:
- Transcoder(std::string p, HTTP::Connection::p r, DecoderBase& d, EncoderBase& e);
+ Transcoder(std::string p, HTTP::Connection::p r, DecoderFilter::p d, EncoderFilter::p e);
void run();
};