1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-15 04:42:04 +00:00
srs/trunk/src/app/srs_app_rtsp.hpp

145 lines
3.4 KiB
C++
Raw Normal View History

/*
The MIT License (MIT)
Copyright (c) 2013-2015 winlin
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef SRS_APP_RTSP_HPP
#define SRS_APP_RTSP_HPP
/*
#include <srs_app_rtsp.hpp>
*/
#include <srs_core.hpp>
#include <string>
2015-02-16 06:05:01 +00:00
#include <vector>
2015-02-17 13:10:06 +00:00
#include <map>
2015-02-16 06:05:01 +00:00
#include <srs_app_st.hpp>
#include <srs_app_thread.hpp>
2015-02-17 13:10:06 +00:00
#include <srs_app_listener.hpp>
#ifdef SRS_AUTO_STREAM_CASTER
2015-02-16 06:05:01 +00:00
class SrsStSocket;
2015-02-17 13:10:06 +00:00
class SrsRtspConn;
2015-02-16 06:05:01 +00:00
class SrsRtspStack;
class SrsRtspCaster;
2015-02-17 13:10:06 +00:00
class SrsConfDirective;
/**
2015-02-17 13:10:06 +00:00
* a rtp connection which transport a stream.
*/
2015-02-17 13:10:06 +00:00
class SrsRtpConn: public ISrsUdpHandler
{
2015-02-17 13:10:06 +00:00
private:
SrsUdpListener* listener;
SrsRtspConn* rtsp;
int _port;
public:
2015-02-17 13:10:06 +00:00
SrsRtpConn(SrsRtspConn* r, int p);
virtual ~SrsRtpConn();
2015-02-16 06:05:01 +00:00
public:
2015-02-17 13:10:06 +00:00
virtual int port();
virtual int listen();
// interface ISrsUdpHandler
public:
virtual int on_udp_packet(sockaddr_in* from, char* buf, int nb_buf);
};
/**
2015-02-16 06:05:01 +00:00
* the rtsp connection serve the fd.
*/
2015-02-16 06:05:01 +00:00
class SrsRtspConn : public ISrsThreadHandler
{
private:
std::string output;
private:
std::string session;
2015-02-17 13:10:06 +00:00
// video stream.
std::string video_id;
SrsRtpConn* video_rtp;
// audio stream.
std::string audio_id;
SrsRtpConn* audio_rtp;
// video sequence header.
std::string sps;
std::string pps;
// audio sequence header.
std::string asc;
private:
2015-02-16 06:05:01 +00:00
st_netfd_t stfd;
SrsStSocket* skt;
SrsRtspStack* rtsp;
SrsRtspCaster* caster;
SrsThread* trd;
public:
2015-02-17 13:10:06 +00:00
SrsRtspConn(SrsRtspCaster* c, st_netfd_t fd, std::string o);
virtual ~SrsRtspConn();
2015-02-16 06:05:01 +00:00
public:
virtual int serve();
private:
virtual int do_cycle();
// interface ISrsThreadHandler
public:
virtual int cycle();
virtual void on_thread_stop();
};
/**
* the caster for rtsp.
*/
2015-02-17 13:10:06 +00:00
class SrsRtspCaster : public ISrsTcpHandler
2015-02-16 06:05:01 +00:00
{
private:
std::string output;
int local_port_min;
int local_port_max;
2015-02-17 13:10:06 +00:00
// key: port, value: whether used.
std::map<int, bool> used_ports;
private:
2015-02-16 06:05:01 +00:00
std::vector<SrsRtspConn*> clients;
public:
SrsRtspCaster(SrsConfDirective* c);
virtual ~SrsRtspCaster();
public:
2015-02-17 13:10:06 +00:00
/**
* alloc a rtp port from local ports pool.
* @param pport output the rtp port.
*/
virtual int alloc_port(int* pport);
/**
* free the alloced rtp port.
*/
virtual void free_port(int lpmin, int lpmax);
// interface ISrsTcpHandler
public:
virtual int on_tcp_client(st_netfd_t stfd);
2015-02-16 06:05:01 +00:00
// internal methods.
public:
virtual void remove(SrsRtspConn* conn);
};
#endif
#endif