Skip to content

Commit 614a781

Browse files
committed
Threads-Hybrid: Fix rebase bugs
1 parent 9c845c5 commit 614a781

6 files changed

+14
-13
lines changed

trunk/src/app/srs_app_hourglass.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ using namespace std;
3333

3434
__thread SrsPps* _srs_pps_timer = NULL;
3535

36-
extern SrsPps* _srs_pps_clock_15ms;
37-
extern SrsPps* _srs_pps_clock_20ms;
38-
extern SrsPps* _srs_pps_clock_25ms;
39-
extern SrsPps* _srs_pps_clock_30ms;
40-
extern SrsPps* _srs_pps_clock_35ms;
41-
extern SrsPps* _srs_pps_clock_40ms;
42-
extern SrsPps* _srs_pps_clock_80ms;
43-
extern SrsPps* _srs_pps_clock_160ms;
44-
extern SrsPps* _srs_pps_timer_s;
36+
extern __thread SrsPps* _srs_pps_clock_15ms;
37+
extern __thread SrsPps* _srs_pps_clock_20ms;
38+
extern __thread SrsPps* _srs_pps_clock_25ms;
39+
extern __thread SrsPps* _srs_pps_clock_30ms;
40+
extern __thread SrsPps* _srs_pps_clock_35ms;
41+
extern __thread SrsPps* _srs_pps_clock_40ms;
42+
extern __thread SrsPps* _srs_pps_clock_80ms;
43+
extern __thread SrsPps* _srs_pps_clock_160ms;
44+
extern __thread SrsPps* _srs_pps_timer_s;
4545

4646
ISrsHourGlass::ISrsHourGlass()
4747
{

trunk/src/app/srs_app_server.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1936,6 +1936,7 @@ srs_error_t SrsApiServer::create_session(
19361936
) {
19371937
srs_error_t err = srs_success;
19381938

1939+
// TODO: FIXME: Should update the hybrids for RTMP streams.
19391940
// Serve all connections of a stream, which identified by url, by the same hybrid thread.
19401941
string url = req->get_stream_url();
19411942
SrsThreadEntry* hybrid = NULL;

trunk/src/app/srs_app_threads.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* The MIT License (MIT)
33
*
4-
* Copyright (c) 2013-2020 Winlin
4+
* Copyright (c) 2013-2021 Winlin
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy of
77
* this software and associated documentation files (the "Software"), to deal in

trunk/src/app/srs_app_threads.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* The MIT License (MIT)
33
*
4-
* Copyright (c) 2013-2020 Winlin
4+
* Copyright (c) 2013-2021 Winlin
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy of
77
* this software and associated documentation files (the "Software"), to deal in

trunk/src/core/srs_core_version5.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* The MIT License (MIT)
33
*
4-
* Copyright (c) 2013-2020 Winlin
4+
* Copyright (c) 2013-2021 Winlin
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy of
77
* this software and associated documentation files (the "Software"), to deal in

trunk/src/core/srs_core_version5.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* The MIT License (MIT)
33
*
4-
* Copyright (c) 2013-2020 Winlin
4+
* Copyright (c) 2013-2021 Winlin
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy of
77
* this software and associated documentation files (the "Software"), to deal in

0 commit comments

Comments
 (0)