Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
amquake committed Oct 26, 2023
1 parent f6ae91d commit 8850726
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,12 @@ private void createStreams() {
visionSource.getSettables().getConfiguration().nickname, "output");

String camHostname = CameraServerJNI.getHostname();
inputVideoStreamer = new MJPGFrameConsumer(camHostname + "_Port_" + inputStreamPort + "_MJPEG_Server", inputStreamPort);
outputVideoStreamer = new MJPGFrameConsumer(camHostname + "_Port_" + outputStreamPort + "_MJPEG_Server", outputStreamPort);
inputVideoStreamer =
new MJPGFrameConsumer(
camHostname + "_Port_" + inputStreamPort + "_MJPEG_Server", inputStreamPort);
outputVideoStreamer =
new MJPGFrameConsumer(
camHostname + "_Port_" + outputStreamPort + "_MJPEG_Server", outputStreamPort);
}

private void recreateStreamResultConsumers() {
Expand Down

0 comments on commit 8850726

Please sign in to comment.