diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-04-23 16:17:20 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-04-23 16:17:20 +0100 |
| commit | 425ef773dbf91d2fecd8e2fbdc20becbfbda46f8 (patch) | |
| tree | f9047287c2e950f8cbfdcfbce9e60bdca87d1faf /src/lib/video_source.cc | |
| parent | 8805ae23ce2c3a19fc6a1fd341cff899bfb61128 (diff) | |
Connect Trimmer clsas.
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)); +} + + |
