1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Merge 5.0.100, v5.0-a1 into develop.

This commit is contained in:
winlin 2022-12-01 23:13:56 +08:00
commit fa177679a6
13 changed files with 1088 additions and 108 deletions

View file

@ -661,7 +661,7 @@ srs_error_t SrsGopCache::cache(SrsSharedPtrMessage* shared_msg)
gop_cache.push_back(msg->copy());
// Clear gop cache if exceed the max frames.
if (gop_cache.size() > (size_t)gop_cache_max_frames_) {
if (gop_cache_max_frames_ > 0 && gop_cache.size() > (size_t)gop_cache_max_frames_) {
srs_warn("Gop cache exceed max frames=%d, total=%d, videos=%d, aalvc=%d",
gop_cache_max_frames_, (int)gop_cache.size(), cached_video_count, audio_after_last_video_count);
clear();