mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
fix #383, support mix_correct algorithm. 2.0.161.
This commit is contained in:
parent
8fbc6526bb
commit
22ca46350b
9 changed files with 189 additions and 17 deletions
|
@ -1329,7 +1329,7 @@ vhost jitter.srs.com {
|
|||
# about the stream monotonically increasing:
|
||||
# 1. video timestamp is monotonically increasing,
|
||||
# 2. audio timestamp is monotonically increasing,
|
||||
# 3. video and audio timestamp is interleaved monotonically increasing.
|
||||
# 3. video and audio timestamp is interleaved/mixed monotonically increasing.
|
||||
# it's specified by RTMP specification, @see 3. Byte Order, Alignment, and Time Format
|
||||
# however, some encoder cannot provides this feature, please set this to off to ignore time jitter.
|
||||
# the time jitter algorithm:
|
||||
|
@ -1338,8 +1338,8 @@ vhost jitter.srs.com {
|
|||
# 3. off, disable the time jitter algorithm, like atc.
|
||||
# default: full
|
||||
time_jitter full;
|
||||
# whether use the mix algorithm to correct the timestamp.
|
||||
# if on, always ensure the timestamp of audio+video is monotonically increase.
|
||||
# whether use the interleaved/mixed algorithm to correct the timestamp.
|
||||
# if on, always ensure the timestamp of audio+video is interleaved/mixed monotonically increase.
|
||||
# if off, use time_jitter to correct the timestamp if required.
|
||||
# default: off
|
||||
mix_correct off;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue