diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-24 11:43:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-24 11:43:25 +0100 |
| commit | 59043fa86b3a70f9e6b205cdeeec9b47678fafef (patch) | |
| tree | aeec2d6139330c0405bc70dcf4d6c768ee242083 | |
| parent | 68b46a970895711694177c26aa4954cf1e23959c (diff) | |
Missing virtual destructor.
| -rw-r--r-- | src/lib/filter_graph.h | 1 |
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; }; |
