Files
UltraGrid/src/rtsp/BasicRTSPOnlySubsession.hh
2014-02-26 12:30:37 +01:00

148 lines
4.6 KiB
C++

/*
* FILE: BasicRTSPOnlySubsession.hh
* AUTHORS: David Cassany <david.cassany@i2cat.net>
* Gerard Castillo <gerard.castillo@i2cat.net>
*
* Copyright (c) 2005-2010 Fundació i2CAT, Internet I Innovació Digital a Catalunya
*
* Redistribution and use in source and binary forms, with or without
* modification, is permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
*
* This product includes software developed by the Fundació i2CAT,
* Internet I Innovació Digital a Catalunya. This product also includes
* software developed by CESNET z.s.p.o.
*
* 4. Neither the name of the University nor of the Institute may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef _BASIC_RTSP_ONLY_SUBSESSION_HH
#define _BASIC_RTSP_ONLY_SUBSESSION_HH
#ifndef _SERVER_MEDIA_SESSION_HH
#include <ServerMediaSession.hh>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#include "rtsp/rtsp_utils.h"
#include "module.h"
#include "control_socket.h"
#ifdef __cplusplus
}
#endif
// #ifndef _ON_DEMAND_SERVER_MEDIA_SUBSESSION_HH
// #include <OnDemandServerMediaSubsession.hh>
// #endif
class Destinations {
public:
Destinations(struct in_addr const& destAddr,
Port const& rtpDestPort,
Port const& rtcpDestPort)
: isTCP(False), addr(destAddr), rtpPort(rtpDestPort), rtcpPort(rtcpDestPort) {
}
Destinations(int tcpSockNum, unsigned char rtpChanId, unsigned char rtcpChanId)
: isTCP(True), rtpPort(0) /*dummy*/, rtcpPort(0) /*dummy*/,
tcpSocketNum(tcpSockNum), rtpChannelId(rtpChanId), rtcpChannelId(rtcpChanId) {
}
public:
Boolean isTCP;
struct in_addr addr;
Port rtpPort;
Port rtcpPort;
int tcpSocketNum;
unsigned char rtpChannelId, rtcpChannelId;
};
class BasicRTSPOnlySubsession: public ServerMediaSubsession {
public:
static BasicRTSPOnlySubsession*
createNew(UsageEnvironment& env,
Boolean reuseFirstSource,
struct module *mod,
rtps_types_t avType);
protected:
BasicRTSPOnlySubsession(UsageEnvironment& env, Boolean reuseFirstSource,
struct module *mod, rtps_types_t avType);
virtual ~BasicRTSPOnlySubsession();
virtual char const* sdpLines();
virtual void getStreamParameters(unsigned clientSessionId,
netAddressBits clientAddress,
Port const& clientRTPPort,
Port const& clientRTCPPort,
int tcpSocketNum,
unsigned char rtpChannelId,
unsigned char rtcpChannelId,
netAddressBits& destinationAddress,
u_int8_t& destinationTTL,
Boolean& isMulticast,
Port& serverRTPPort,
Port& serverRTCPPort,
void*& streamToken);
virtual void startStream(unsigned clientSessionId, void* streamToken,
TaskFunc* rtcpRRHandler, void* rtcpRRHandlerClientData,
unsigned short& rtpSeqNum,
unsigned& rtpTimestamp,
ServerRequestAlternativeByteHandler* serverRequestAlternativeByteHandler,
void* serverRequestAlternativeByteHandlerClientData);
virtual void deleteStream(unsigned clientSessionId, void*& streamToken);
protected:
char* fSDPLines;
Destinations* Vdestination;
Destinations* Adestination;
private:
void setSDPLines();
Boolean fReuseFirstSource;
void* fLastStreamToken;
char fCNAME[100];
struct module *fmod;
rtps_types_t avType;
};
#endif