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
* //www.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.rtp;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.util.Random;
import net.majorkernelpanic.streaming.rtcp.SenderReport;
/**
*
* Each packetizer inherits from this one and therefore uses RTP and UDP.
*
*/abstractpublicclass AbstractPacketizer {
protectedstaticfinalint rtphl = RtpSocket.RTP_HEADER_LENGTH;
// Maximum size of RTP packets
protectedfinalstaticint MAXPACKETSIZE = RtpSocket.MTU-28;
protected RtpSocket socket = null;
protected InputStream is = null;
protectedbyte[] buffer;
protectedlong ts = 0;
public AbstractPacketizer() {
int ssrc = new Random().nextInt();
ts = new Random().nextInt();
socket = new RtpSocket();
socket.setSSRC(ssrc);
}
public RtpSocket getRtpSocket() {
return socket;
}
publicvoid setSSRC(int ssrc) {
socket.setSSRC(ssrc);
}
publicint getSSRC() {
return socket.getSSRC();
}
publicvoid setInputStream(InputStream is) {
this.is = is;
}
publicvoid setTimeToLive(int ttl) throws IOException {
socket.setTimeToLive(ttl);
}
/**
* Sets the destination of the stream.
* @param dest The destination address of the stream
* @param rtpPort Destination port that will be used for RTP
* @param rtcpPort Destination port that will be used for RTCP
*/publicvoid setDestination(InetAddress dest, int rtpPort, int rtcpPort) {
socket.setDestination(dest, rtpPort, rtcpPort);
}
/** Starts the packetizer. */publicabstractvoid start();
/** Stops the packetizer. */publicabstractvoid stop();
/** Updates data for RTCP SR and sends the packet. */protectedvoid send(int length) throws IOException {
socket.commitBuffer(length);
}
/** For debugging purposes. */protectedstatic String printBuffer(byte[] buffer, int start,int end) {
String str = "";
for (int i=start;i<end;i++) str+=","+Integer.toHexString(buffer[i]&0xFF);
return str;
}
/** Used in packetizers to estimate timestamps in RTP packets. */protectedstaticclass Statistics {
publicfinalstatic String TAG = "Statistics";
privateint count=700, c = 0;
privatefloat m = 0, q = 0;
privatelong elapsed = 0;
privatelong start = 0;
privatelong duration = 0;
privatelong period = 10000000000L;
privateboolean initoffset = false;
public Statistics() {}
public Statistics(int count, int period) {
this.count = count;
this.period = period;
}
publicvoid reset() {
initoffset = false;
q = 0; m = 0; c = 0;
elapsed = 0;
start = 0;
duration = 0;
}
publicvoid push(long value) {
elapsed += value;
if (elapsed>period) {
elapsed = 0;
long now = System.nanoTime();
if (!initoffset || (now - start < 0)) {
start = now;
duration = 0;
initoffset = true;
}
// Prevents drifting issues by comparing the real duration of the
// stream with the sum of all temporal lengths of RTP packets.
value += (now - start) - duration;
//Log.d(TAG, "sum1: "+duration/1000000+" sum2: "+(now-start)/1000000+" drift: "+((now-start)-duration)/1000000+" v: "+value/1000000);
}
if (c<5) {
// We ignore the first 20 measured values because they may not be accurate
c++;
m = value;
} else {
m = (m*q+value)/(q+1);
if (q<count) q++;
}
}
publiclong average() {
long l = (long)m;
duration += l;
return l;
}
}
}