mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Merge SRS2
This commit is contained in:
commit
1054b0a90f
5 changed files with 110 additions and 1 deletions
|
@ -65,6 +65,7 @@ class SrsCommonMessage;
|
|||
class SrsPacket;
|
||||
class SrsAmf0Object;
|
||||
class IMergeReadHandler;
|
||||
class SrsCallPacket;
|
||||
|
||||
/****************************************************************************
|
||||
*****************************************************************************
|
||||
|
@ -635,6 +636,7 @@ enum SrsRtmpConnType
|
|||
SrsRtmpConnPlay,
|
||||
SrsRtmpConnFMLEPublish,
|
||||
SrsRtmpConnFlashPublish,
|
||||
SrsRtmpConnHaivisionPublish,
|
||||
};
|
||||
std::string srs_client_type_string(SrsRtmpConnType type);
|
||||
bool srs_client_type_is_publish(SrsRtmpConnType type);
|
||||
|
@ -953,6 +955,11 @@ public:
|
|||
* onStatus(NetStream.Publish.Start)
|
||||
*/
|
||||
virtual int start_fmle_publish(int stream_id);
|
||||
/**
|
||||
* For encoder of Haivision, response the startup request.
|
||||
* @see https://github.com/ossrs/srs/issues/844
|
||||
*/
|
||||
virtual int start_haivision_publish(int stream_id);
|
||||
/**
|
||||
* process the FMLE unpublish event.
|
||||
* @unpublish_tid the unpublish request transaction id.
|
||||
|
@ -989,6 +996,7 @@ public:
|
|||
private:
|
||||
virtual int identify_create_stream_client(SrsCreateStreamPacket* req, int stream_id, SrsRtmpConnType& type, std::string& stream_name, double& duration);
|
||||
virtual int identify_fmle_publish_client(SrsFMLEStartPacket* req, SrsRtmpConnType& type, std::string& stream_name);
|
||||
virtual int identify_haivision_publish_client(SrsFMLEStartPacket* req, SrsRtmpConnType& type, std::string& stream_name);
|
||||
virtual int identify_flash_publish_client(SrsPublishPacket* req, SrsRtmpConnType& type, std::string& stream_name);
|
||||
private:
|
||||
virtual int identify_play_client(SrsPlayPacket* req, SrsRtmpConnType& type, std::string& stream_name, double& duration);
|
||||
|
@ -1257,7 +1265,7 @@ public:
|
|||
};
|
||||
|
||||
/**
|
||||
* FMLE start publish: ReleaseStream/PublishStream
|
||||
* FMLE start publish: ReleaseStream/PublishStream/FCPublish/FCUnpublish
|
||||
*/
|
||||
class SrsFMLEStartPacket : public SrsPacket
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue