mirror of
https://github.com/ossrs/srs.git
synced 2025-02-14 20:31:56 +00:00
Fix #1580, fix cid range problem. 3.0.102
This commit is contained in:
parent
9ac8585cf9
commit
86d04a70ed
3 changed files with 4 additions and 2 deletions
|
@ -146,6 +146,7 @@ For previous versions, please read:
|
||||||
|
|
||||||
## V3 changes
|
## V3 changes
|
||||||
|
|
||||||
|
* v3.0, 2020-01-19, For [#1580][bug #1580], fix cid range problem. 3.0.102
|
||||||
* v3.0, 2020-01-19, For [#1070][bug #1070], define FLV CodecID for [AV1][bug #1070] and [opus][bug #307]. 3.0.101
|
* v3.0, 2020-01-19, For [#1070][bug #1070], define FLV CodecID for [AV1][bug #1070] and [opus][bug #307]. 3.0.101
|
||||||
* v3.0, 2020-01-16, For [#1575][bug #1575], correct RTMP redirect as tcUrl, add redirect2 as RTMP URL. 3.0.100
|
* v3.0, 2020-01-16, For [#1575][bug #1575], correct RTMP redirect as tcUrl, add redirect2 as RTMP URL. 3.0.100
|
||||||
* v3.0, 2020-01-15, For [#1509][bug #1509], decrease the fast vector init size from 64KB to 64B. 3.0.99
|
* v3.0, 2020-01-15, For [#1509][bug #1509], decrease the fast vector init size from 64KB to 64B. 3.0.99
|
||||||
|
@ -1600,6 +1601,7 @@ Winlin
|
||||||
[bug #1575]: https://github.com/ossrs/srs/issues/1575
|
[bug #1575]: https://github.com/ossrs/srs/issues/1575
|
||||||
[bug #307]: https://github.com/ossrs/srs/issues/307
|
[bug #307]: https://github.com/ossrs/srs/issues/307
|
||||||
[bug #1070]: https://github.com/ossrs/srs/issues/1070
|
[bug #1070]: https://github.com/ossrs/srs/issues/1070
|
||||||
|
[bug #1580]: https://github.com/ossrs/srs/issues/1580
|
||||||
[bug #xxxxxxxxxxxxx]: https://github.com/ossrs/srs/issues/xxxxxxxxxxxxx
|
[bug #xxxxxxxxxxxxx]: https://github.com/ossrs/srs/issues/xxxxxxxxxxxxx
|
||||||
|
|
||||||
[exo #828]: https://github.com/google/ExoPlayer/pull/828
|
[exo #828]: https://github.com/google/ExoPlayer/pull/828
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
// The version config.
|
// The version config.
|
||||||
#define VERSION_MAJOR 3
|
#define VERSION_MAJOR 3
|
||||||
#define VERSION_MINOR 0
|
#define VERSION_MINOR 0
|
||||||
#define VERSION_REVISION 101
|
#define VERSION_REVISION 102
|
||||||
|
|
||||||
// The macros generated by configure script.
|
// The macros generated by configure script.
|
||||||
#include <srs_auto_headers.hpp>
|
#include <srs_auto_headers.hpp>
|
||||||
|
|
|
@ -291,7 +291,7 @@ bool SrsSharedPtrMessage::check(int stream_id)
|
||||||
|
|
||||||
// we donot use the complex basic header,
|
// we donot use the complex basic header,
|
||||||
// ensure the basic header is 1bytes.
|
// ensure the basic header is 1bytes.
|
||||||
if (ptr->header.perfer_cid < 2) {
|
if (ptr->header.perfer_cid < 2 || ptr->header.perfer_cid > 63) {
|
||||||
srs_info("change the chunk_id=%d to default=%d", ptr->header.perfer_cid, RTMP_CID_ProtocolControl);
|
srs_info("change the chunk_id=%d to default=%d", ptr->header.perfer_cid, RTMP_CID_ProtocolControl);
|
||||||
ptr->header.perfer_cid = RTMP_CID_ProtocolControl;
|
ptr->header.perfer_cid = RTMP_CID_ProtocolControl;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue