-
Notifications
You must be signed in to change notification settings - Fork 0
/
video_streamer_vlc.orogen
52 lines (34 loc) · 1.05 KB
/
video_streamer_vlc.orogen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name 'video_streamer_vlc'
version '0.1'
using_library 'frame_helper'
using_library 'video_streamer_vlc'
using_library 'video_capture_vlc'
import_types_from 'base'
import_types_from 'VLCConfig.hpp'
task_context 'Streamer' do
needs_configuration
dynamic_input_port(/.*/, ro_ptr('base::samples::frame::Frame')).
doc 'camera frame'
operation("createInput")
.returns("/bool")
.argument("config","/video_streamer_vlc/PortConfig")
fatal_states :IO_ERROR
port_driven
end
task_context 'SingleStreamer' do
needs_configuration
input_port('input_frames', ro_ptr('base::samples::frame::Frame'))
property 'config', "/video_streamer_vlc/Config"
port_driven
end
task_context 'Capturer' do
needs_configuration
dynamic_output_port(/.*/, ro_ptr('base::samples::frame::Frame')).
doc 'camera frame'
operation("createStream")
.returns("/bool")
.argument("portname","/std/string")
.argument("uri","/std/string")
fatal_states :IO_ERROR
port_driven
end