diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-10 14:29:14 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-18 11:50:29 +0100 |
| commit | 504c63b3d62038bc486ca8a09e77fbb403907edd (patch) | |
| tree | d9118c185110dd9eb103ed033700d4b3f486785d /src/lib/dcp_decoder.h | |
| parent | 9423e02c37daba7f9e406929a1cfc1bb10fb4b62 (diff) | |
Basics of splitting up Decoder tree like Content.
Diffstat (limited to 'src/lib/dcp_decoder.h')
| -rw-r--r-- | src/lib/dcp_decoder.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/dcp_decoder.h b/src/lib/dcp_decoder.h index ce9a3ef9a..6e58c4904 100644 --- a/src/lib/dcp_decoder.h +++ b/src/lib/dcp_decoder.h @@ -21,18 +21,17 @@ * @brief A decoder of existing DCPs. */ -#include "video_decoder.h" -#include "audio_decoder.h" -#include "subtitle_decoder.h" +#include "decoder.h" namespace dcp { class Reel; } class DCPContent; +class Log; struct dcp_subtitle_within_dcp_test; -class DCPDecoder : public VideoDecoder, public AudioDecoder, public SubtitleDecoder +class DCPDecoder : public Decoder { public: DCPDecoder (boost::shared_ptr<const DCPContent>, boost::shared_ptr<Log> log, bool fast); |
