diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-17 23:36:18 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-17 23:36:18 +0000 |
| commit | 8dd455ba867122056e2093e259a9a045aeeea451 (patch) | |
| tree | 1e4ca9f9a413fc34acace48b28297fd3e4d26982 /src/lib/decoder.h | |
| parent | c421f6a5551f0755737f57fbeac6a0157599e0e8 (diff) | |
Various fixes to still-image mode.
Diffstat (limited to 'src/lib/decoder.h')
| -rw-r--r-- | src/lib/decoder.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 0d35ebb3a..b8278ff80 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -33,6 +33,7 @@ #include "stream.h" #include "video_source.h" #include "audio_source.h" +#include "film.h" class Job; class DecodeOptions; @@ -41,7 +42,6 @@ class Log; class DelayLine; class TimedSubtitle; class Subtitle; -class Film; class FilterGraph; /** @class Decoder. @@ -72,6 +72,11 @@ protected: boost::shared_ptr<const DecodeOptions> _opt; /** associated Job, or 0 */ Job* _job; + +private: + virtual void film_changed (Film::Property) {} + + boost::signals2::scoped_connection _film_connection; }; #endif |
