1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Fix dead links

This commit is contained in:
winlin 2021-12-04 11:08:42 +08:00
parent 4e64c66e02
commit b807ef9049
6 changed files with 0 additions and 13 deletions

View file

@ -79,7 +79,6 @@
#define SRS_CONSTS_RTMP_MAX_FMT3_HEADER_SIZE 5
// For performance issue,
// the iovs cache, @see https://github.com/ossrs/srs/issues/194
// iovs cache for multiple messages for each connections.
// suppose the chunk size is 64k, each message send in a chunk which needs only 2 iovec,
// so the iovs max should be (SRS_PERF_MW_MSGS * 2)
@ -87,7 +86,6 @@
// @remark, SRS will realloc when the iovs not enough.
#define SRS_CONSTS_IOVS_MAX (SRS_PERF_MW_MSGS * 2)
// For performance issue,
// the c0c3 cache, @see https://github.com/ossrs/srs/issues/194
// c0c3 cache for multiple messages for each connections.
// each c0 <= 16byes, suppose the chunk size is 64k,
// each message send in a chunk which needs only a c0 header,

View file

@ -250,7 +250,6 @@ class SrsSharedPtrMessage
// 4.1. Message Header
public:
// The header can shared, only set the timestamp and stream id.
// @see https://github.com/ossrs/srs/issues/251
//SrsSharedMessageHeader header;
// Four-byte field that contains a timestamp of the message.
// The 4 bytes are packed in the big-endian order.
@ -278,7 +277,6 @@ private:
{
public:
// The shared message header.
// @see https://github.com/ossrs/srs/issues/251
SrsSharedMessageHeader header;
// The actual shared payload.
char* payload;