Skip to content

Commit 954b1b7

Browse files
authored
Typo: Fix some typos for #3973 #3976 #3982. v6.0.114 (#3973)
1 parent fa8096a commit 954b1b7

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,12 @@ jobs:
5555
# See https://github.com/cygwin/cygwin-install-action#parameters
5656
# Note that https://github.com/egor-tensin/setup-cygwin fails to install packages.
5757
- name: Setup Cygwin
58-
uses: cygwin/cygwin-install-action@db475590d56881c6cef7b3f96f6f3dd9532ea1f4 # master
58+
uses: cygwin/cygwin-install-action@006ad0b0946ca6d0a3ea2d4437677fa767392401 # master
5959
with:
6060
platform: x86_64
6161
packages: bash make gcc-g++ cmake automake patch pkg-config tcl unzip
6262
install-dir: C:\cygwin64
63+
check-sig: false
6364
##################################################################################################################
6465
- name: Checkout repository
6566
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0

trunk/doc/CHANGELOG.md

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

99
## SRS 6.0 Changelog
10+
* v6.0, 2024-03-18, Merge [#3973](https://github.com/ossrs/srs/pull/3973): Typo: Fix some typo for #3973 #3976 #3982. v6.0.114 (#3973)
1011
* v6.0, 2024-02-06, Merge [#3920](https://github.com/ossrs/srs/pull/3920): WHIP: Fix bug for converting WHIP to RTMP/HLS. v6.0.113 (#3920)
1112
* v6.0, 2024-02-05, Merge [#3924](https://github.com/ossrs/srs/pull/3924): Upgrade hls.js and set in low latency mode. v6.0.112 (#3924)
1213
* v6.0, 2024-02-05, Merge [#3925](https://github.com/ossrs/srs/pull/3925): RTC: Fix video and audio track pt_ is not change in player before publisher. v6.0.111 (#3925)

trunk/src/app/srs_app_st.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class ISrsCoroutineHandler
5454
virtual srs_error_t cycle() = 0;
5555
};
5656

57-
// Start the object, generally a croutine.
57+
// Start the object, generally a coroutine.
5858
class ISrsStartable
5959
{
6060
public:

trunk/src/core/srs_core_time.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ typedef int64_t srs_utime_t;
2525

2626
// Convert srs_utime_t as second.
2727
#define srsu2s(us) ((us) / SRS_UTIME_SECONDS)
28-
#define srsu2si(us) ((us) / SRS_UTIME_SECONDS)
28+
#define srsu2si(us) int((us) / SRS_UTIME_SECONDS)
2929

3030
// Them time duration = end - start. return 0, if start or end is 0.
3131
srs_utime_t srs_duration(srs_utime_t start, srs_utime_t end);
3232

33-
// The time unit in ms, for example 120 * SRS_UTIME_SECONDS means 120s.
33+
// The time unit in seconds, for example 120 * SRS_UTIME_SECONDS means 120s.
3434
#define SRS_UTIME_SECONDS 1000000LL
3535

3636
// The time unit in minutes, for example 3 * SRS_UTIME_MINUTES means 3m.

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 113
12+
#define VERSION_REVISION 114
1313

1414
#endif

0 commit comments

Comments
 (0)