X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_source.h;h=c94b5a20a5ccdfe9ef720c276428b5b43880e522;hb=e8819ad7580f25eea7ca3c59cf0a3979d76a6b44;hp=e60e7dfd09dce7fc16d31a126ddca4a83698a37e;hpb=5859b758e3a6e0191ce12e77b636c7def58bbc3b;p=dcpomatic.git diff --git a/src/lib/video_source.h b/src/lib/video_source.h index e60e7dfd0..c94b5a20a 100644 --- a/src/lib/video_source.h +++ b/src/lib/video_source.h @@ -21,8 +21,8 @@ * @brief Parent class for classes which emit video data. */ -#ifndef DVDOMATIC_VIDEO_SOURCE_H -#define DVDOMATIC_VIDEO_SOURCE_H +#ifndef DCPOMATIC_VIDEO_SOURCE_H +#define DCPOMATIC_VIDEO_SOURCE_H #include #include @@ -43,8 +43,9 @@ public: * First parameter is the video image. * 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. + * Fourth parameter is the time relative to the start of this source's content. */ - boost::signals2::signal, bool, boost::shared_ptr)> Video; + boost::signals2::signal, bool, boost::shared_ptr, Time)> Video; void connect_video (boost::shared_ptr); };