INNER CODE UNIT · Java

getStreamingMethod

fyhertz/libstreaming · src/net/majorkernelpanic/streaming/MediaStream.java:220

	public byte getStreamingMethod() {
		return mMode;
	}		
	
	/**
	 * Returns the packetizer associated with the {@link MediaStream}.
	 * @return The packetizer
	 */
	public AbstractPacketizer getPacketizer() { 
		return mPacketizer;
	}

	/**
	 * Returns an approximation of the bit rate consumed by the stream in bit per seconde.
	 */
	public long getBitrate() {
		return !mStreaming ? 0 : mPacketizer.getRtpSocket().getBitrate(); 
	}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…