summaryrefslogtreecommitdiff
path: root/src/lib/matcher.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-06 22:55:11 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-06 22:55:11 +0000
commitb0802a7644c12bc039c070367440439f7afe133a (patch)
tree2fa4a2c322304f48bab0994bb37aa803fa3b344c /src/lib/matcher.h
parent085d9d4966c32aa1f3661c597b4bc2b47eaefa40 (diff)
Hopefully fix up still-image generation.
Diffstat (limited to 'src/lib/matcher.h')
-rw-r--r--src/lib/matcher.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/lib/matcher.h b/src/lib/matcher.h
index 2f580b589..84ae2f73e 100644
--- a/src/lib/matcher.h
+++ b/src/lib/matcher.h
@@ -42,22 +42,6 @@ private:
boost::optional<libdcp::Size> _size;
boost::optional<int> _channels;
- struct VideoRecord {
- VideoRecord (boost::shared_ptr<Image> i, bool s, boost::shared_ptr<Subtitle> sub, double t)
- : image (i)
- , same (s)
- , subtitle (sub)
- , time (t)
- {}
-
- boost::shared_ptr<Image> image;
- bool same;
- boost::shared_ptr<Subtitle> subtitle;
- double time;
- };
-
- std::list<VideoRecord> _pending_video;
-
struct AudioRecord {
AudioRecord (boost::shared_ptr<AudioBuffers> a, double t)
: audio (a)