Skip to content

Commit 57c74d1

Browse files
vivisoymilkhappyduiniuluantanqinZhangWeiwinlinvip
authored
Add ignore configuration for cursor. v7.0.115 (#4547)
Cursor ignored. --------- Co-authored-by: Haibo Chen <[email protected]> Co-authored-by: ZhangWei <[email protected]> Co-authored-by: winlin <[email protected]>
1 parent abacd68 commit 57c74d1

22 files changed

+43
-51
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@
2828

2929
# Apple-specific garbage files.
3030
.AppleDouble
31-
3231
.idea
32+
.cursor/
3333
.DS_Store
3434
*.heap
3535
*.exe
3636

37+
3738
cmake-build-debug
3839
/build/
3940
/trunk/cmake/build

trunk/doc/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ The changelog for SRS.
77
<a name="v7-changes"></a>
88

99
## SRS 7.0 Changelog
10+
* v7.0, 2025-10-31, Merge [#4547](https://github.com/ossrs/srs/pull/4547): Add ignore configuration for cursor. v7.0.115 (#4547)
1011
* v7.0, 2025-10-30, WebRTC: Use realtime for TWCC timestamp accuracy. v7.0.114
1112
* v7.0, 2025-10-30, AI: HLS: Fix crash when segment is not open by adding NULL checks. v7.0.113 (#3431)
1213
* v7.0, 2025-10-29, AI: AAC: Fix mono audio reported as stereo in HTTP API. v7.0.112 (#3556)

trunk/src/app/srs_app_hls.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,7 +1132,7 @@ srs_error_t SrsHlsFmp4Muxer::do_refresh_m3u8_segment(SrsHlsM4sSegment *segment,
11321132
}
11331133
// ss << segment->uri << SRS_CONSTS_LF;
11341134
ss << path.filepath_base(seg_uri) << SRS_CONSTS_LF;
1135-
1135+
11361136
return err;
11371137
}
11381138

@@ -2947,4 +2947,3 @@ void SrsHls::hls_show_mux_log()
29472947
srsu2msi(controller_->duration()), controller_->deviation());
29482948
}
29492949
// LCOV_EXCL_STOP
2950-

trunk/src/app/srs_app_hls.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
#include <srs_core.hpp>
1111

12+
#include <sstream>
1213
#include <string>
1314
#include <vector>
14-
#include <sstream>
1515

1616
#include <srs_app_async_call.hpp>
1717
#include <srs_app_fragment.hpp>

trunk/src/app/srs_app_http_static.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,4 +731,3 @@ srs_error_t SrsHttpStaticServer::mount_vhost(string vhost, string &pmount)
731731
return err;
732732
}
733733
// LCOV_EXCL_STOP
734-

trunk/src/app/srs_app_listener.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ srs_error_t SrsUdpMuxListener::cycle()
817817
pprint->elapse();
818818
if (pprint->can_print()) {
819819
// LCOV_EXCL_START
820-
820+
821821
// For performance, only restore context when output log.
822822
_srs_context->set_id(cid_);
823823

trunk/src/app/srs_app_log.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,3 @@ void SrsFileLog::open_log_file()
172172
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
173173
}
174174
// LCOV_EXCL_STOP
175-

trunk/src/app/srs_app_process.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,4 +371,3 @@ void SrsProcess::fast_kill()
371371
return;
372372
}
373373
// LCOV_EXCL_STOP
374-

trunk/src/app/srs_app_reload.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,3 @@ srs_error_t ISrsReloadHandler::on_reload_vhost_chunk_size(string /*vhost*/)
2424
return srs_success;
2525
}
2626
// LCOV_EXCL_STOP
27-

trunk/src/app/srs_app_rtc_conn.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1532,10 +1532,10 @@ srs_error_t SrsRtcPublishStream::on_twcc(uint16_t sn)
15321532
{
15331533
srs_error_t err = srs_success;
15341534

1535-
// To get more accurate timestamp, and avoid deviation caused by coroutine scheduler,
1535+
// To get more accurate timestamp, and avoid deviation caused by coroutine scheduler,
15361536
// we use realtime for TWCC.
15371537
srs_utime_t now = srs_time_now_realtime();
1538-
1538+
15391539
err = rtcp_twcc_->recv_packet(sn, now);
15401540

15411541
return err;

0 commit comments

Comments
 (0)