Skip to content

Commit 464a013

Browse files
Arjen10duiniuluantanqinxiaozhihong
authored
replace values with enums. v6.0.166 v7.0.28 (#4303)
--------- Co-authored-by: Haibo Chen <[email protected]> Co-authored-by: john <[email protected]> Co-authored-by: winlin <[email protected]> --------- Co-authored-by: Haibo Chen(陈海博) <[email protected]> Co-authored-by: john <[email protected]>
1 parent 909c9ef commit 464a013

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

trunk/doc/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The changelog for SRS.
77
<a name="v7-changes"></a>
88

99
## SRS 7.0 Changelog
10+
* v7.0, 2025-03-21, Merge [#4303](https://github.com/ossrs/srs/pull/4303): replace values with enums. v7.0.28 (#4303)
11+
* v7.0, 2025-03-21, Merge [#4303](https://github.com/ossrs/srs/pull/4303): replace values with enums. v7.0.27 (#4303)
1012
* v7.0, 2025-03-20, Merge [#4305](https://github.com/ossrs/srs/pull/4305): free sample to prevent memory leak. v7.0.26 (#4305)
1113
* v7.0, 2025-03-18, Merge [#4302](https://github.com/ossrs/srs/pull/4302): update geekyeggo/delete-artifact to 5.0.0. v7.0.25 (#4302)
1214
* v7.0, 2025-03-06, Merge [#4296](https://github.com/ossrs/srs/pull/4296): Dvr: support h265 flv fragments. v7.0.24 (#4296)
@@ -38,6 +40,8 @@ The changelog for SRS.
3840
<a name="v6-changes"></a>
3941

4042
## SRS 6.0 Changelog
43+
* v6.0, 2025-03-21, Merge [#4303](https://github.com/ossrs/srs/pull/4303): replace values with enums. v6.0.166 (#4303)
44+
* v6.0, 2025-03-21, Merge [#4303](https://github.com/ossrs/srs/pull/4303): replace values with enums. v6.0.165 (#4303)
4145
* v6.0, 2025-03-20, Merge [#4305](https://github.com/ossrs/srs/pull/4305): free sample to prevent memory leak. v6.0.164 (#4305)
4246
* v6.0, 2025-03-18, Merge [#4302](https://github.com/ossrs/srs/pull/4302): update geekyeggo/delete-artifact to 5.0.0. v6.0.163 (#4302)
4347
* v6.0, 2025-03-06, Merge [#4296](https://github.com/ossrs/srs/pull/4296): Dvr: support h265 flv fragments. v6.0.162 (#4296)
@@ -206,6 +210,7 @@ The changelog for SRS.
206210
<a name="v5-changes"></a>
207211

208212
## SRS 5.0 Changelog
213+
* v5.0, 2025-03-21, Merge [#4303](https://github.com/ossrs/srs/pull/4303): replace values with enums. v5.0.223 (#4303)
209214
* v5.0, 2025-03-20, Merge [#4305](https://github.com/ossrs/srs/pull/4305): free sample to prevent memory leak. v5.0.222 (#4305)
210215
* v5.0, 2025-03-18, Merge [#4302](https://github.com/ossrs/srs/pull/4302): update geekyeggo/delete-artifact to 5.0.0. v5.0.221 (#4302)
211216
* v5.0, 2025-02-20, Merge [#4253](https://github.com/ossrs/srs/pull/4253): fix typo about heartbeat. v5.0.220 (#4253)

trunk/src/app/srs_app_rtmp_conn.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ srs_error_t SrsRtmpConn::service_cycle()
409409
return srs_error_wrap(err, "rtmp: set in window ack size");
410410
}
411411

412-
if ((err = rtmp->set_peer_bandwidth((int)(2.5 * 1000 * 1000), 2)) != srs_success) {
412+
if ((err = rtmp->set_peer_bandwidth((int)(2.5 * 1000 * 1000), SrsPeerBandwidthDynamic)) != srs_success) {
413413
return srs_error_wrap(err, "rtmp: set peer bandwidth");
414414
}
415415

trunk/src/core/srs_core_version5.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 5
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 222
12+
#define VERSION_REVISION 223
1313

1414
#endif

trunk/src/core/srs_core_version6.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 6
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 164
12+
#define VERSION_REVISION 166
1313

1414
#endif

trunk/src/core/srs_core_version7.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 7
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 26
12+
#define VERSION_REVISION 28
1313

1414
#endif

0 commit comments

Comments
 (0)