summaryrefslogtreecommitdiff
path: root/src/lib/video_sink.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/video_sink.h')
-rw-r--r--src/lib/video_sink.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/video_sink.h b/src/lib/video_sink.h
index 32c7f3b38..0170c7350 100644
--- a/src/lib/video_sink.h
+++ b/src/lib/video_sink.h
@@ -34,7 +34,7 @@ public:
* @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, bool same, boost::shared_ptr<Subtitle> s) = 0;
+ virtual void process_video (boost::shared_ptr<const Image> i, bool same, boost::shared_ptr<Subtitle> s) = 0;
};
class TimedVideoSink
@@ -46,7 +46,7 @@ public:
* @param s A subtitle that should be on this frame, or 0.
* @param t Source timestamp.
*/
- virtual void process_video (boost::shared_ptr<Image> i, bool same, boost::shared_ptr<Subtitle> s, double t) = 0;
+ virtual void process_video (boost::shared_ptr<const Image> i, bool same, boost::shared_ptr<Subtitle> s, double t) = 0;
};
#endif