diff options
Diffstat (limited to 'src/lib/video_sink.h')
| -rw-r--r-- | src/lib/video_sink.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/video_sink.h b/src/lib/video_sink.h index 78500c643..7c128cf73 100644 --- a/src/lib/video_sink.h +++ b/src/lib/video_sink.h @@ -31,9 +31,10 @@ class VideoSink public: /** Call with a frame of video. * @param i Video frame image. + * @param same true if i is the same as last time we were called. * @param s A subtitle that should be on this frame, or 0. */ - virtual void process_video (boost::shared_ptr<Image> i, boost::shared_ptr<Subtitle> s) = 0; + virtual void process_video (boost::shared_ptr<Image> i, bool same, boost::shared_ptr<Subtitle> s) = 0; }; #endif |
