From da19eaac0dd80afed3dd282d61ea3298196a5090 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 13 Dec 2013 10:23:20 +0000 Subject: Start of changing frame numbers to time. --- src/lib/video_decoder.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/lib/video_decoder.h') diff --git a/src/lib/video_decoder.h b/src/lib/video_decoder.h index 01319e481..6e9060dbd 100644 --- a/src/lib/video_decoder.h +++ b/src/lib/video_decoder.h @@ -38,15 +38,14 @@ public: * First parameter is the video image. * Second parameter is the eye(s) which should see this image. * Third parameter is true if the image is the same as the last one that was emitted for this Eyes value. - * Fourth parameter is the frame within our source. + * Fourth parameter is the time within our source. */ - boost::signals2::signal, Eyes, bool, VideoContent::Frame)> Video; + boost::signals2::signal, Eyes, bool, ContentTime)> Video; protected: - void video (boost::shared_ptr, bool, VideoContent::Frame); + void video (boost::shared_ptr, bool, ContentTime); boost::shared_ptr _video_content; - VideoContent::Frame _video_position; }; #endif -- cgit v1.2.3