From a4709a6439366ae94b9d329af3373c5b66e43df1 Mon Sep 17 00:00:00 2001 From: winlin Date: Thu, 19 Mar 2015 21:08:42 +0800 Subject: [PATCH] for #151, add comments for the audio overflow ratio. --- trunk/src/app/srs_app_hls.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/trunk/src/app/srs_app_hls.cpp b/trunk/src/app/srs_app_hls.cpp index fd6b3c129..7d7ba63b2 100644 --- a/trunk/src/app/srs_app_hls.cpp +++ b/trunk/src/app/srs_app_hls.cpp @@ -346,6 +346,7 @@ bool SrsHlsMuxer::is_segment_overflow() bool SrsHlsMuxer::is_segment_absolutely_overflow() { + // @see https://github.com/winlinvip/simple-rtmp-server/issues/151#issuecomment-83553950 srs_assert(current); return current->duration >= hls_aof_ratio * hls_fragment; }