2014-07-20 14:02:14 +00:00
|
|
|
/* ---------------------------------------------------------------------------
|
|
|
|
** This software is in the public domain, furnished "as is", without technical
|
|
|
|
** support, and with no warranty, express or implied, as to its usefulness for
|
|
|
|
** any purpose.
|
|
|
|
**
|
|
|
|
** ServerMediaSubsession.h
|
|
|
|
**
|
|
|
|
** -------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#ifndef SERVER_MEDIA_SUBSESSION
|
|
|
|
#define SERVER_MEDIA_SUBSESSION
|
|
|
|
|
|
|
|
#include <string>
|
2015-03-01 22:28:17 +00:00
|
|
|
#include <iomanip>
|
2016-01-16 20:15:14 +00:00
|
|
|
#include <iostream>
|
2016-04-10 15:58:03 +00:00
|
|
|
#include <fstream>
|
2014-07-20 14:02:14 +00:00
|
|
|
|
|
|
|
// live555
|
|
|
|
#include <liveMedia.hh>
|
|
|
|
|
2015-03-07 19:25:52 +00:00
|
|
|
// forward declaration
|
|
|
|
class V4L2DeviceSource;
|
2014-07-20 14:02:14 +00:00
|
|
|
|
|
|
|
// ---------------------------------
|
|
|
|
// BaseServerMediaSubsession
|
|
|
|
// ---------------------------------
|
|
|
|
class BaseServerMediaSubsession
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BaseServerMediaSubsession(StreamReplicator* replicator): m_replicator(replicator) {};
|
|
|
|
|
|
|
|
public:
|
2016-01-16 20:15:14 +00:00
|
|
|
static FramedSource* createSource(UsageEnvironment& env, FramedSource * videoES, const std::string& format);
|
|
|
|
static RTPSink* createSink(UsageEnvironment& env, Groupsock * rtpGroupsock, unsigned char rtpPayloadTypeIfDynamic, const std::string& format);
|
2015-03-07 19:25:52 +00:00
|
|
|
char const* getAuxLine(V4L2DeviceSource* source,unsigned char rtpPayloadType);
|
2014-07-20 14:02:14 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
StreamReplicator* m_replicator;
|
|
|
|
};
|
|
|
|
|
|
|
|
// -----------------------------------------
|
|
|
|
// ServerMediaSubsession for Multicast
|
|
|
|
// -----------------------------------------
|
|
|
|
class MulticastServerMediaSubsession : public PassiveServerMediaSubsession , public BaseServerMediaSubsession
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static MulticastServerMediaSubsession* createNew(UsageEnvironment& env
|
|
|
|
, struct in_addr destinationAddress
|
|
|
|
, Port rtpPortNum, Port rtcpPortNum
|
|
|
|
, int ttl
|
|
|
|
, StreamReplicator* replicator
|
2016-01-16 20:15:14 +00:00
|
|
|
, const std::string& format);
|
2014-07-20 14:02:14 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
MulticastServerMediaSubsession(StreamReplicator* replicator, RTPSink* rtpSink, RTCPInstance* rtcpInstance)
|
|
|
|
: PassiveServerMediaSubsession(*rtpSink, rtcpInstance), BaseServerMediaSubsession(replicator), m_rtpSink(rtpSink) {};
|
|
|
|
|
|
|
|
virtual char const* sdpLines() ;
|
|
|
|
virtual char const* getAuxSDPLine(RTPSink* rtpSink,FramedSource* inputSource);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
RTPSink* m_rtpSink;
|
|
|
|
std::string m_SDPLines;
|
|
|
|
};
|
|
|
|
|
|
|
|
// -----------------------------------------
|
|
|
|
// ServerMediaSubsession for Unicast
|
|
|
|
// -----------------------------------------
|
|
|
|
class UnicastServerMediaSubsession : public OnDemandServerMediaSubsession , public BaseServerMediaSubsession
|
|
|
|
{
|
|
|
|
public:
|
2016-01-16 20:15:14 +00:00
|
|
|
static UnicastServerMediaSubsession* createNew(UsageEnvironment& env, StreamReplicator* replicator, const std::string& format);
|
2014-07-20 14:02:14 +00:00
|
|
|
|
|
|
|
protected:
|
2016-01-16 20:15:14 +00:00
|
|
|
UnicastServerMediaSubsession(UsageEnvironment& env, StreamReplicator* replicator, const std::string& format)
|
2014-07-20 14:02:14 +00:00
|
|
|
: OnDemandServerMediaSubsession(env, False), BaseServerMediaSubsession(replicator), m_format(format) {};
|
|
|
|
|
|
|
|
virtual FramedSource* createNewStreamSource(unsigned clientSessionId, unsigned& estBitrate);
|
|
|
|
virtual RTPSink* createNewRTPSink(Groupsock* rtpGroupsock, unsigned char rtpPayloadTypeIfDynamic, FramedSource* inputSource);
|
2016-04-10 15:58:03 +00:00
|
|
|
virtual char const* getAuxSDPLine(RTPSink* rtpSink,FramedSource* inputSource);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const std::string m_format;
|
|
|
|
};
|
|
|
|
|
|
|
|
// -----------------------------------------
|
|
|
|
// ServerMediaSubsession for HLS
|
|
|
|
// -----------------------------------------
|
|
|
|
|
|
|
|
class HLSSink : public MediaSink
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static HLSSink* createNew(UsageEnvironment& env, unsigned int bufferSize)
|
|
|
|
{
|
|
|
|
return new HLSSink(env, bufferSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
HLSSink(UsageEnvironment& env, unsigned bufferSize) : MediaSink(env), m_bufferSize(bufferSize), m_slice(0)
|
|
|
|
{
|
|
|
|
m_buffer = new unsigned char[m_bufferSize];
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~HLSSink()
|
|
|
|
{
|
|
|
|
delete[] m_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
virtual Boolean continuePlaying()
|
|
|
|
{
|
|
|
|
Boolean ret = False;
|
|
|
|
if (fSource != NULL)
|
|
|
|
{
|
|
|
|
fSource->getNextFrame(m_buffer, m_bufferSize,
|
|
|
|
afterGettingFrame, this,
|
|
|
|
onSourceClosure, this);
|
|
|
|
ret = True;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void afterGettingFrame(void* clientData, unsigned frameSize,
|
|
|
|
unsigned numTruncatedBytes,
|
|
|
|
struct timeval presentationTime,
|
|
|
|
unsigned /*durationInMicroseconds*/)
|
|
|
|
{
|
|
|
|
HLSSink* sink = (HLSSink*)clientData;
|
|
|
|
sink->afterGettingFrame(frameSize, numTruncatedBytes, presentationTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
void afterGettingFrame(unsigned frameSize, unsigned numTruncatedBytes, struct timeval presentationTime)
|
|
|
|
{
|
|
|
|
if (numTruncatedBytes > 0)
|
|
|
|
{
|
|
|
|
envir() << "FileSink::afterGettingFrame(): The input frame data was too large for our buffer size \n";
|
|
|
|
}
|
|
|
|
if (m_os.is_open())
|
|
|
|
{
|
|
|
|
if (m_slice != (presentationTime.tv_sec/10))
|
|
|
|
{
|
|
|
|
m_os.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!m_os.is_open())
|
|
|
|
{
|
|
|
|
m_slice = presentationTime.tv_sec/10;
|
|
|
|
std::ostringstream os;
|
|
|
|
os << m_slice << ".ts";
|
|
|
|
m_os.open(os.str().c_str());
|
|
|
|
}
|
|
|
|
if (m_os.is_open())
|
|
|
|
{
|
|
|
|
m_os.write((char*)m_buffer, frameSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
continuePlaying();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned char * m_buffer;
|
|
|
|
unsigned int m_bufferSize;
|
|
|
|
std::ofstream m_os;
|
|
|
|
unsigned int m_slice;
|
|
|
|
};
|
|
|
|
|
|
|
|
class HLSServerMediaSubsession : public OnDemandServerMediaSubsession , public BaseServerMediaSubsession
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static HLSServerMediaSubsession* createNew(UsageEnvironment& env, StreamReplicator* replicator, const std::string& format)
|
|
|
|
{
|
|
|
|
return new HLSServerMediaSubsession(env,replicator,format);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
HLSServerMediaSubsession(UsageEnvironment& env, StreamReplicator* replicator, const std::string& format)
|
|
|
|
: OnDemandServerMediaSubsession(env, False), BaseServerMediaSubsession(replicator), m_format(format)
|
|
|
|
{
|
|
|
|
// Create a source
|
|
|
|
FramedSource* source = replicator->createStreamReplica();
|
|
|
|
FramedSource* videoSource = createSource(env, source, format);
|
|
|
|
|
|
|
|
// Start Playing the Sink
|
|
|
|
HLSSink * videoSink = HLSSink::createNew(env, 65535);
|
|
|
|
videoSink->startPlaying(*videoSource, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual FramedSource* createNewStreamSource(unsigned clientSessionId, unsigned& estBitrate)
|
|
|
|
{
|
|
|
|
FramedSource* source = m_replicator->createStreamReplica();
|
|
|
|
return createSource(envir(), source, m_format);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual RTPSink* createNewRTPSink(Groupsock* rtpGroupsock, unsigned char rtpPayloadTypeIfDynamic, FramedSource* inputSource)
|
|
|
|
{
|
|
|
|
return createSink(envir(), rtpGroupsock, rtpPayloadTypeIfDynamic, m_format);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual char const* getAuxSDPLine(RTPSink* rtpSink,FramedSource* inputSource);
|
|
|
|
virtual float duration() const { return 20; }
|
|
|
|
|
|
|
|
virtual void seekStream(unsigned clientSessionId, void* streamToken, double& seekNPT, double streamDuration, u_int64_t& numBytes)
|
|
|
|
{
|
|
|
|
m_slice = seekNPT / 10;
|
|
|
|
seekNPT = m_slice*10;
|
|
|
|
numBytes = 1;
|
|
|
|
}
|
|
|
|
virtual FramedSource* getStreamSource(void* streamToken)
|
|
|
|
{
|
|
|
|
std::ostringstream os;
|
|
|
|
os << m_slice << ".ts";
|
|
|
|
return ByteStreamFileSource::createNew(envir(), os.str().c_str());
|
|
|
|
}
|
2014-07-20 14:02:14 +00:00
|
|
|
|
|
|
|
protected:
|
2016-01-16 20:15:14 +00:00
|
|
|
const std::string m_format;
|
2016-04-10 15:58:03 +00:00
|
|
|
unsigned int m_slice;
|
2014-07-20 14:02:14 +00:00
|
|
|
};
|
|
|
|
|
2016-01-16 20:15:14 +00:00
|
|
|
#endif
|