-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add h264 sei filter configure #1631
Conversation
Codecov Report
@@ Coverage Diff @@
## 3.0release #1631 +/- ##
===============================================
+ Coverage 53.05% 68.59% +15.54%
===============================================
Files 82 96 +14
Lines 26520 40716 +14196
===============================================
+ Hits 14069 27931 +13862
- Misses 12451 12785 +334 | Impacted Files | Coverage Δ | |' '| Impacted Files | Coverage Δ | | Continue to review full report at Codecov.
|
@@ -459,6 +459,12 @@ srs_error_t rtmp_client::on_ts_video(std::shared_ptr<SrsBuffer> avs_ptr, uint64_ | |||
if (nal_unit_type == SrsAvcNaluTypeAccessUnitDelimiter) { | |||
continue; | |||
} | |||
|
|||
if (_srs_config->get_srt_sei_filter()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reading the config for every video frame may pose certain risks. It is recommended to cache this configuration at the rtmp_client level and update it if necessary using reload.
TRANS_BY_GPT3
add h264 sei filter configure in srt2rtmp