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

time jitter detect and correct, very simple algorithm

This commit is contained in:
winlin 2013-10-23 21:31:22 +08:00
parent 2a346c2398
commit e31e3d601d
3 changed files with 34 additions and 0 deletions

View file

@ -72,5 +72,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// compare
#define srs_min(a, b) ((a < b)? a : b)
#define srs_max(a, b) ((a < b)? b : a)
#endif