If you think the Android project streamvid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2011-2014 GUIGUI Simon, fyhertz@gmail.com
* /*fromwww.java2s.com*/
* This file is part of libstreaming (https://github.com/fyhertz/libstreaming)
*
* Spydroid is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This source code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this source code; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/package net.majorkernelpanic.streaming;
import java.io.IOException;
import java.io.OutputStream;
import java.net.InetAddress;
/**
* An interface that represents a Stream.
*/publicinterface Stream {
/**
* Configures the stream. You need to call this before calling {@link #getSessionDescription()}
* to apply your configuration of the stream.
*/publicvoid configure() throws IllegalStateException, IOException;
/**
* Starts the stream.
* This method can only be called after {@link Stream#configure()}.
*/publicvoid start() throws IllegalStateException, IOException;
/**
* Stops the stream.
*/publicvoid stop();
/**
* Sets the Time To Live of packets sent over the network.
* @param ttl The time to live
* @throws IOException
*/publicvoid setTimeToLive(int ttl) throws IOException;
/**
* Sets the destination ip address of the stream.
* @param dest The destination address of the stream
*/publicvoid setDestinationAddress(InetAddress dest);
/**
* Sets the destination ports of the stream.
* If an odd number is supplied for the destination port then the next
* lower even number will be used for RTP and it will be used for RTCP.
* If an even number is supplied, it will be used for RTP and the next odd
* number will be used for RTCP.
* @param dport The destination port
*/publicvoid setDestinationPorts(int dport);
/**
* Sets the destination ports of the stream.
* @param rtpPort Destination port that will be used for RTP
* @param rtcpPort Destination port that will be used for RTCP
*/publicvoid setDestinationPorts(int rtpPort, int rtcpPort);
/**
* If a TCP is used as the transport protocol for the RTP session,
* the output stream to which RTP packets will be written to must
* be specified with this method.
*/publicvoid setOutputStream(OutputStream stream, byte channelIdentifier);
/**
* Returns a pair of source ports, the first one is the
* one used for RTP and the second one is used for RTCP.
**/publicint[] getLocalPorts();
/**
* Returns a pair of destination ports, the first one is the
* one used for RTP and the second one is used for RTCP.
**/publicint[] getDestinationPorts();
/**
* Returns the SSRC of the underlying {@link net.majorkernelpanic.streaming.rtp.RtpSocket}.
* @return the SSRC of the stream.
*/publicint getSSRC();
/**
* Returns an approximation of the bit rate consumed by the stream in bit per seconde.
*/publiclong getBitrate();
/**
* Returns a description of the stream using SDP.
* This method can only be called after {@link Stream#configure()}.
* @throws IllegalStateException Thrown when {@link Stream#configure()} wa not called.
*/public String getSessionDescription() throws IllegalStateException;
publicboolean isStreaming();
}