diff options
Diffstat (limited to 'src/lib/video_source.h')
| -rw-r--r-- | src/lib/video_source.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/video_source.h b/src/lib/video_source.h index d53589e2e..893629160 100644 --- a/src/lib/video_source.h +++ b/src/lib/video_source.h @@ -41,9 +41,10 @@ public: /** Emitted when a video frame is ready. * First parameter is the video image. - * Second parameter is either 0 or a subtitle that should be on this frame. + * Second parameter is true if the image is the same as the last one that was emitted. + * Third parameter is either 0 or a subtitle that should be on this frame. */ - boost::signals2::signal<void (boost::shared_ptr<Image>, boost::shared_ptr<Subtitle>)> Video; + boost::signals2::signal<void (boost::shared_ptr<Image>, bool, boost::shared_ptr<Subtitle>)> Video; void connect_video (boost::shared_ptr<VideoSink>); }; |
