summaryrefslogtreecommitdiff
path: root/src/lib/video_source.cc
blob: 87b33026e109a1b053bed6ae27d69d6f51d4a4e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "video_source.h"
#include "video_sink.h"

using boost::shared_ptr;
using boost::bind;

void
VideoSource::connect_video (shared_ptr<VideoSink> s)
{
	Video.connect (bind (&VideoSink::process_video, s, _1, _2));
}