summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-06-24 11:43:25 +0100
committerCarl Hetherington <cth@carlh.net>2013-06-24 11:43:25 +0100
commit59043fa86b3a70f9e6b205cdeeec9b47678fafef (patch)
treeaeec2d6139330c0405bc70dcf4d6c768ee242083 /src/lib
parent68b46a970895711694177c26aa4954cf1e23959c (diff)
Missing virtual destructor.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/filter_graph.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/filter_graph.h b/src/lib/filter_graph.h
index 2138943e4..ee378af4c 100644
--- a/src/lib/filter_graph.h
+++ b/src/lib/filter_graph.h
@@ -33,6 +33,7 @@ class FFmpegDecoder;
class FilterGraph
{
public:
+ virtual ~FilterGraph () {}
virtual bool can_process (libdcp::Size, AVPixelFormat) const = 0;
virtual std::list<boost::shared_ptr<Image> > process (AVFrame *) = 0;
};