mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Revert "for bug #194, add pipe to consumer."
This reverts commit 1e601a6efc
.
This commit is contained in:
parent
306f75b267
commit
73abb1a31d
4 changed files with 2 additions and 72 deletions
|
@ -58,7 +58,6 @@ class SrsDvr;
|
|||
class SrsEncoder;
|
||||
#endif
|
||||
class SrsStream;
|
||||
class SrsPipe;
|
||||
|
||||
/**
|
||||
* the time jitter algorithm:
|
||||
|
@ -122,10 +121,6 @@ public:
|
|||
*/
|
||||
virtual void set_queue_size(double queue_size);
|
||||
public:
|
||||
/**
|
||||
* whether queue is empty.
|
||||
*/
|
||||
virtual bool empty();
|
||||
/**
|
||||
* enqueue the message, the timestamp always monotonically.
|
||||
* @param msg, the msg to enqueue, user never free it whatever the return code.
|
||||
|
@ -153,7 +148,6 @@ private:
|
|||
class SrsConsumer
|
||||
{
|
||||
private:
|
||||
SrsPipe* pipe;
|
||||
SrsRtmpJitter* jitter;
|
||||
SrsSource* source;
|
||||
SrsMessageQueue* queue;
|
||||
|
@ -163,16 +157,6 @@ private:
|
|||
public:
|
||||
SrsConsumer(SrsSource* _source);
|
||||
virtual ~SrsConsumer();
|
||||
public:
|
||||
/**
|
||||
* initialize the consumer.
|
||||
*/
|
||||
virtual int initialize();
|
||||
/**
|
||||
* source can use this fd to poll with the read event,
|
||||
* for performance issue, @see: https://github.com/winlinvip/simple-rtmp-server/issues/194
|
||||
*/
|
||||
virtual st_netfd_t pipe_fd();
|
||||
public:
|
||||
/**
|
||||
* set the size of queue.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue