/usr/include/liveMedia/RTPSink.hh is in liblivemedia-dev 2011.12.23-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | /**********
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.)
This library 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 Lesser General Public License for
more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
**********/
// "liveMedia"
// Copyright (c) 1996-2012 Live Networks, Inc. All rights reserved.
// RTP Sinks
// C++ header
#ifndef _RTP_SINK_HH
#define _RTP_SINK_HH
#ifndef _MEDIA_SINK_HH
#include "MediaSink.hh"
#endif
#ifndef _RTP_INTERFACE_HH
#include "RTPInterface.hh"
#endif
class RTPTransmissionStatsDB; // forward
class RTPSink: public MediaSink {
public:
static Boolean lookupByName(UsageEnvironment& env, char const* sinkName,
RTPSink*& resultSink);
// used by RTCP:
u_int32_t SSRC() const {return fSSRC;}
// later need a means of changing the SSRC if there's a collision #####
u_int32_t convertToRTPTimestamp(struct timeval tv);
unsigned packetCount() const {return fPacketCount;}
unsigned octetCount() const {return fOctetCount;}
// used by RTSP servers:
Groupsock const& groupsockBeingUsed() const { return *(fRTPInterface.gs()); }
Groupsock& groupsockBeingUsed() { return *(fRTPInterface.gs()); }
unsigned char rtpPayloadType() const { return fRTPPayloadType; }
unsigned rtpTimestampFrequency() const { return fTimestampFrequency; }
void setRTPTimestampFrequency(unsigned freq) {
fTimestampFrequency = freq;
}
char const* rtpPayloadFormatName() const {return fRTPPayloadFormatName;}
unsigned numChannels() const { return fNumChannels; }
virtual char const* sdpMediaType() const; // for use in SDP m= lines
virtual char* rtpmapLine() const; // returns a string to be delete[]d
virtual char const* auxSDPLine();
// optional SDP line (e.g. a=fmtp:...)
u_int16_t currentSeqNo() const { return fSeqNo; }
u_int32_t presetNextTimestamp();
// ensures that the next timestamp to be used will correspond to
// the current 'wall clock' time.
RTPTransmissionStatsDB& transmissionStatsDB() const {
return *fTransmissionStatsDB;
}
Boolean nextTimestampHasBeenPreset() const { return fNextTimestampHasBeenPreset; }
void setStreamSocket(int sockNum, unsigned char streamChannelId) {
fRTPInterface.setStreamSocket(sockNum, streamChannelId);
}
void addStreamSocket(int sockNum, unsigned char streamChannelId) {
fRTPInterface.addStreamSocket(sockNum, streamChannelId);
}
void removeStreamSocket(int sockNum, unsigned char streamChannelId) {
fRTPInterface.removeStreamSocket(sockNum, streamChannelId);
}
void setServerRequestAlternativeByteHandler(int socketNum, ServerRequestAlternativeByteHandler* handler, void* clientData) {
fRTPInterface.setServerRequestAlternativeByteHandler(socketNum, handler, clientData);
}
// hacks to allow sending RTP over TCP (RFC 2236, section 10.12)
void getTotalBitrate(unsigned& outNumBytes, double& outElapsedTime);
// returns the number of bytes sent since the last time that we
// were called, and resets the counter.
protected:
RTPSink(UsageEnvironment& env,
Groupsock* rtpGS, unsigned char rtpPayloadType,
u_int32_t rtpTimestampFrequency,
char const* rtpPayloadFormatName,
unsigned numChannels);
// abstract base class
virtual ~RTPSink();
RTPInterface fRTPInterface;
unsigned char fRTPPayloadType;
unsigned fPacketCount, fOctetCount, fTotalOctetCount /*incl RTP hdr*/;
struct timeval fTotalOctetCountStartTime;
u_int32_t fCurrentTimestamp;
u_int16_t fSeqNo;
private:
// redefined virtual functions:
virtual Boolean isRTPSink() const;
private:
u_int32_t fSSRC, fTimestampBase;
unsigned fTimestampFrequency;
Boolean fNextTimestampHasBeenPreset;
char const* fRTPPayloadFormatName;
unsigned fNumChannels;
struct timeval fCreationTime;
RTPTransmissionStatsDB* fTransmissionStatsDB;
};
class RTPTransmissionStats; // forward
class RTPTransmissionStatsDB {
public:
unsigned numReceivers() const { return fNumReceivers; }
class Iterator {
public:
Iterator(RTPTransmissionStatsDB& receptionStatsDB);
virtual ~Iterator();
RTPTransmissionStats* next();
// NULL if none
private:
HashTable::Iterator* fIter;
};
// The following is called whenever a RTCP RR packet is received:
void noteIncomingRR(u_int32_t SSRC, struct sockaddr_in const& lastFromAddress,
unsigned lossStats, unsigned lastPacketNumReceived,
unsigned jitter, unsigned lastSRTime, unsigned diffSR_RRTime);
// The following is called when a RTCP BYE packet is received:
void removeRecord(u_int32_t SSRC);
RTPTransmissionStats* lookup(u_int32_t SSRC) const;
private: // constructor and destructor, called only by RTPSink:
friend class RTPSink;
RTPTransmissionStatsDB(RTPSink& rtpSink);
virtual ~RTPTransmissionStatsDB();
private:
void add(u_int32_t SSRC, RTPTransmissionStats* stats);
private:
friend class Iterator;
unsigned fNumReceivers;
RTPSink& fOurRTPSink;
HashTable* fTable;
};
class RTPTransmissionStats {
public:
u_int32_t SSRC() const {return fSSRC;}
struct sockaddr_in const& lastFromAddress() const {return fLastFromAddress;}
unsigned lastPacketNumReceived() const {return fLastPacketNumReceived;}
unsigned firstPacketNumReported() const {return fFirstPacketNumReported;}
unsigned totNumPacketsLost() const {return fTotNumPacketsLost;}
unsigned jitter() const {return fJitter;}
unsigned lastSRTime() const { return fLastSRTime; }
unsigned diffSR_RRTime() const { return fDiffSR_RRTime; }
unsigned roundTripDelay() const;
// The round-trip delay (in units of 1/65536 seconds) computed from
// the most recently-received RTCP RR packet.
struct timeval timeCreated() const {return fTimeCreated;}
struct timeval lastTimeReceived() const {return fTimeReceived;}
void getTotalOctetCount(u_int32_t& hi, u_int32_t& lo);
void getTotalPacketCount(u_int32_t& hi, u_int32_t& lo);
// Information which requires at least two RRs to have been received:
Boolean oldValid() const {return fOldValid;} // Have two RRs been received?
unsigned packetsReceivedSinceLastRR() const;
u_int8_t packetLossRatio() const { return fPacketLossRatio; }
// as an 8-bit fixed-point number
int packetsLostBetweenRR() const;
private:
// called only by RTPTransmissionStatsDB:
friend class RTPTransmissionStatsDB;
RTPTransmissionStats(RTPSink& rtpSink, u_int32_t SSRC);
virtual ~RTPTransmissionStats();
void noteIncomingRR(struct sockaddr_in const& lastFromAddress,
unsigned lossStats, unsigned lastPacketNumReceived,
unsigned jitter,
unsigned lastSRTime, unsigned diffSR_RRTime);
private:
RTPSink& fOurRTPSink;
u_int32_t fSSRC;
struct sockaddr_in fLastFromAddress;
unsigned fLastPacketNumReceived;
u_int8_t fPacketLossRatio;
unsigned fTotNumPacketsLost;
unsigned fJitter;
unsigned fLastSRTime;
unsigned fDiffSR_RRTime;
struct timeval fTimeCreated, fTimeReceived;
Boolean fOldValid;
unsigned fOldLastPacketNumReceived;
unsigned fOldTotNumPacketsLost;
Boolean fFirstPacket;
unsigned fFirstPacketNumReported;
u_int32_t fLastOctetCount, fTotalOctetCount_hi, fTotalOctetCount_lo;
u_int32_t fLastPacketCount, fTotalPacketCount_hi, fTotalPacketCount_lo;
};
#endif
|