diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-26 23:49:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-26 23:49:54 +0100 |
| commit | 87a709a4ea5dffaadaf35ef94edb4b578eb3b56c (patch) | |
| tree | f8a5aa8e9a2e16ebe4a38b917fd5bc9654866789 /src/lib/video_source.cc | |
| parent | ccc07eebc492d74c351c235584fd708c46b5b656 (diff) | |
| parent | 86011ad6b4ea0004a51c59b0563cf89c0947546d (diff) | |
Merge master.
Diffstat (limited to 'src/lib/video_source.cc')
| -rw-r--r-- | src/lib/video_source.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/video_source.cc b/src/lib/video_source.cc index af6f941fd..539243402 100644 --- a/src/lib/video_source.cc +++ b/src/lib/video_source.cc @@ -34,3 +34,11 @@ TimedVideoSource::connect_video (shared_ptr<TimedVideoSink> s) { Video.connect (bind (&TimedVideoSink::process_video, s, _1, _2, _3, _4)); } + +void +TimedVideoSource::connect_video (shared_ptr<VideoSink> s) +{ + Video.connect (bind (&VideoSink::process_video, s, _1, _2, _3)); +} + + |
