Skip to content

Commit

Permalink
mjpeg server names
Browse files Browse the repository at this point in the history
  • Loading branch information
amquake committed Oct 30, 2023
1 parent 592abc8 commit abeb858
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ private void createStreams() {
String camHostname = CameraServerJNI.getHostname();
inputVideoStreamer =
new MJPGFrameConsumer(
camHostname + "_Port_" + inputStreamPort + "_MJPEG_Server", inputStreamPort);
camHostname + "_Port_" + inputStreamPort + "_Input_MJPEG_Server", inputStreamPort);
outputVideoStreamer =
new MJPGFrameConsumer(
camHostname + "_Port_" + outputStreamPort + "_MJPEG_Server", outputStreamPort);
camHostname + "_Port_" + outputStreamPort + "_Output_MJPEG_Server", outputStreamPort);
}

private void recreateStreamResultConsumers() {
Expand Down

0 comments on commit abeb858

Please sign in to comment.