#include <cstdlib>
#ifdef CCXX_NAMESPACES
using namespace ost;
using namespace std;
#endif
{
public:
Sender(const unsigned char* data, const InetHostAddress& ia,
tpport_t port, uint32 tstamp, uint16 count) :
RTPSession(InetHostAddress(
"0.0.0.0")), packetsPerSecond(10)
{
uint32 timestamp = tstamp? tstamp : 0;
cout << "My SSRC identifier is: "
cerr << "Could not connect" << endl;
exit();
}
uint32 period = 1000/packetsPerSecond;
TimerPort::setTimer(period);
for ( int i = 0; i < count ; i++ ) {
data,strlen((char *)data) + 1);
Thread::sleep(TimerPort::getTimer());
TimerPort::incTimer(period);
}
}
private:
const uint16 packetsPerSecond;
};
int main(int argc, char *argv[])
{
cout << "rtpsend..." << endl;
if (argc != 6) {
cerr << "Syntax: " << "data host port timestamp count" << endl;
exit(1);
}
Sender sender((unsigned char *)argv[1], InetHostAddress(argv[2]),
atoi(argv[3]), atoi(argv[4]), atoi(argv[5]));
cout << "I have sent " << argv[5]
<< " RTP packets containing \"" << argv[1]
<< "\", with timestamp " << argv[4]
<< " to " << argv[2] << ":" << argv[3]
<< endl;
return 0;
}
void setSchedulingTimeout(microtimeout_t to)
Set the default scheduling timeout to use when no data packets are waiting to be sent.
Definition oqueue.h:364
bool addDestination(const InetHostAddress &ia, tpport_t dataPort=DefaultRTPDataPort, tpport_t controlPort=0)
void putData(uint32 stamp, const unsigned char *data=NULL, size_t len=0)
This is used to create a data packet in the send queue.
void setExpireTimeout(microtimeout_t to)
Set the "expired" timer for expiring packets pending in the send queue which have gone unsent and are...
Definition oqueue.h:379
void setSDESItem(SDESItemType item, const std::string &val)
Definition sources.h:382
uint32 getLocalSSRC() const
Definition queuebase.h:184
bool setPayloadFormat(const PayloadFormat &pf)
Set the payload format in use, for timing and payload type identification purposes.
Definition queuebase.h:177
uint32 getCurrentRTPClockRate() const
Get the clock rate in RTP clock units (for instance, 8000 units per second for PCMU,...
Definition queuebase.h:195
This template class adds the threading aspect to the RTPSessionBase template in one of the many possi...
Definition rtp.h:421
void startRunning()
Activate stack and start service thread.
Definition rtp.h:508
@ sptPCMU
ITU-T G.711. mu-law audio 8 Khz (RFC 1890)
Definition formats.h:75
@ SDESItemTypeTOOL
Application or tool.
Definition rtcppkt.h:72
SingleThreadRTPSession RTPSession
Uses two pairs of sockets for RTP data and RTCP transmission/reception.
Definition rtp.h:601
__EXPORT RTPApplication & defaultApplication()
Get the RTPApplication object for the "default" application (the only one used by common applications...
Generic and audio/video profile specific RTP interface of ccRTP.