Skip to content

Commit 1a0456a

Browse files
committed
Threads: TODO: Sort the packets, to avoid NACK
1 parent b11f958 commit 1a0456a

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

trunk/src/app/srs_app_hybrid.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -183,12 +183,6 @@ srs_error_t SrsHybridServer::initialize()
183183
// A monitor to check the clock wall deviation, per clock tick.
184184
timer_->subscribe(20 * SRS_UTIME_MILLISECONDS, clock_monitor_);
185185

186-
// Consume the async UDP/SRTP packets.
187-
if ((err = _srs_thread_pool->consume()) != srs_success) {
188-
return srs_error_wrap(err, "srtp");
189-
}
190-
}
191-
192186
vector<ISrsHybridServer*>::iterator it;
193187
for (it = servers.begin(); it != servers.end(); ++it) {
194188
ISrsHybridServer* server = *it;

trunk/src/app/srs_app_threads.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1181,6 +1181,7 @@ srs_error_t SrsAsyncSRTPManager::consume(SrsThreadEntry* entry, int* nn_consumed
11811181
// How many messages to run a yield.
11821182
uint32_t nn_msgs_for_yield = 0;
11831183

1184+
// TODO: FIXME: Sort the packets, to avoid NACK.
11841185
vector<SrsAsyncSRTPPacket*> flying_cooked_packets;
11851186
entry->cooked_packets_->swap(flying_cooked_packets);
11861187

0 commit comments

Comments
 (0)