mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Fix RBSP issue, where 0x03 should be removed. v5.0.178 v6.0.75 (#3597)
ISO_IEC_14496-10-AVC-2012.pdf, page 65 7.4.1.1 Encapsulation of an SODB within an RBSP (informative) ... 00 00 03 xx, the 03 byte should be drop where xx represents any 2 bit pattern: 00, 01, 10, or 11. --------- Co-authored-by: john <hondaxiao@tencent.com> Co-authored-by: chundonglinlin <chundonglinlin@163.com> Co-authored-by: winlin <winlin@vip.126.com>
This commit is contained in:
parent
6f42ca67cb
commit
add0f369c5
9 changed files with 339 additions and 86 deletions
|
@ -1328,7 +1328,6 @@ vhost stream.control.com {
|
|||
vhost publish.srs.com {
|
||||
# the config for FMLE/Flash publisher, which push RTMP to SRS.
|
||||
publish {
|
||||
# about MR, read https://github.com/ossrs/srs/issues/241
|
||||
# when enabled the mr, SRS will read as large as possible.
|
||||
# Overwrite by env SRS_VHOST_PUBLISH_MR for all vhosts.
|
||||
# default: off
|
||||
|
@ -1401,7 +1400,6 @@ vhost refer.anti_suck.com {
|
|||
# the security to allow or deny clients.
|
||||
vhost security.srs.com {
|
||||
# security for host to allow or deny clients.
|
||||
# @see https://github.com/ossrs/srs/issues/211
|
||||
security {
|
||||
# whether enable the security for vhost.
|
||||
# default: off
|
||||
|
@ -1781,7 +1779,6 @@ vhost hls.srs.com {
|
|||
# the hls m3u8 target duration ratio,
|
||||
# EXT-X-TARGETDURATION = hls_td_ratio * hls_fragment // init
|
||||
# EXT-X-TARGETDURATION = max(ts_duration, EXT-X-TARGETDURATION) // for each ts
|
||||
# @see https://github.com/ossrs/srs/issues/304#issuecomment-74000081
|
||||
# Overwrite by env SRS_VHOST_HLS_HLS_TD_RATIO for all vhosts.
|
||||
# default: 1.5
|
||||
hls_td_ratio 1.5;
|
||||
|
@ -1800,7 +1797,6 @@ vhost hls.srs.com {
|
|||
# ignore, disable the hls.
|
||||
# disconnect, require encoder republish.
|
||||
# continue, ignore failed try to continue output hls.
|
||||
# @see https://github.com/ossrs/srs/issues/264
|
||||
# Overwrite by env SRS_VHOST_HLS_HLS_ON_ERROR for all vhosts.
|
||||
# default: continue
|
||||
hls_on_error continue;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
# security config for srs, allow play and deny publish.
|
||||
# @see https://github.com/ossrs/srs/issues/211#issuecomment-68507035
|
||||
# @see full.conf for detail config.
|
||||
|
||||
listen 1935;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue