mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Support padding max to 127
This commit is contained in:
parent
a4dbf3ca8a
commit
ef48507e80
4 changed files with 4 additions and 3 deletions
|
@ -4855,7 +4855,7 @@ int SrsConfig::get_rtc_server_padding()
|
|||
return DEFAULT;
|
||||
}
|
||||
|
||||
return srs_min(16, ::atoi(conf->arg0().c_str()));
|
||||
return srs_min(127, ::atoi(conf->arg0().c_str()));
|
||||
}
|
||||
|
||||
SrsConfDirective* SrsConfig::get_rtc(string vhost)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue