Skip to content

Commit

Permalink
Update sink_pv.m
Browse files Browse the repository at this point in the history
  • Loading branch information
jdibenes committed Apr 26, 2024
1 parent ea2a836 commit 4724887
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions extensions/client_matlab/+hl2ss/+mt/sink_pv.m
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function close(self)
response = self.module('download_calibration', self.host, self.port, self.width, self.height, self.framerate);
end

function start_subsystem(self, enable_mrc, hologram_composition, recording_indicator, video_stabilization, blank_protected, show_mesh, global_opacity, output_width, output_height, video_stabilization_length, hologram_perspective)
function start_subsystem(self, enable_mrc, hologram_composition, recording_indicator, video_stabilization, blank_protected, show_mesh, shared, global_opacity, output_width, output_height, video_stabilization_length, hologram_perspective)
arguments
self
enable_mrc = false
Expand All @@ -84,14 +84,15 @@ function start_subsystem(self, enable_mrc, hologram_composition, recording_indic
video_stabilization = false
blank_protected = false
show_mesh = false
shared = false
global_opacity = 0.9
output_width = 0.0
output_height = 0.0
video_stabilization_length = 0
hologram_perspective = 1
end

self.module('start_subsystem_pv', self.host, self.port, logical(enable_mrc), logical(hologram_composition), logical(recording_indicator), logical(video_stabilization), logical(blank_protected), logical(show_mesh), single(global_opacity), single(output_width), single(output_height), uint32(video_stabilization_length), uint32(hologram_perspective));
self.module('start_subsystem_pv', self.host, self.port, logical(enable_mrc), logical(hologram_composition), logical(recording_indicator), logical(video_stabilization), logical(blank_protected), logical(show_mesh), logical(shared), single(global_opacity), single(output_width), single(output_height), uint32(video_stabilization_length), uint32(hologram_perspective));
end

function stop_subsystem(self)
Expand Down

0 comments on commit 4724887

Please sign in to comment.