Class OutputStream

java.lang.Object
org.red5.server.stream.OutputStream

public class OutputStream extends Object
Output stream that consists of audio, video and data channels
See Also:
  • Field Details

    • log

      protected static org.slf4j.Logger log
      Logger
    • video

      private Channel video
      Video channel
    • audio

      private Channel audio
      Audio channel
    • data

      private Channel data
      Data channel
  • Constructor Details

    • OutputStream

      public OutputStream(Channel video, Channel audio, Channel data)
      Creates output stream from channels
      Parameters:
      video - Video channel
      audio - Audio channel
      data - Data channel
  • Method Details

    • close

      public void close()
      Closes audion, video and data channels
    • getAudio

      public Channel getAudio()
      Getter for audio channel
      Returns:
      Audio channel
    • getData

      public Channel getData()
      Getter for data channel
      Returns:
      Data channel
    • getVideo

      public Channel getVideo()
      Getter for video channel
      Returns:
      Video channel