Skip to content

Commit

Permalink
hotfixed online flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mdevaev committed Dec 26, 2024
1 parent c404c49 commit 412a177
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ustreamer/stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -598,8 +598,8 @@ static void _stream_update_captured_fpsi(us_stream_s *stream, const us_frame_s *
us_stream_runtime_s *const run = stream->run;

us_fpsi_meta_s meta = {0};
us_fpsi_frame_to_meta(run->blank->raw, &meta);
us_fpsi_update(run->http->captured_fpsi, false, &meta);
us_fpsi_frame_to_meta(frame, &meta);
us_fpsi_update(run->http->captured_fpsi, bump, &meta);

if (stream->notify_parent && !memcmp(&run->notify_meta, &meta, sizeof(us_fpsi_meta_s))) {
memcpy(&run->notify_meta, &meta, sizeof(us_fpsi_meta_s));
Expand Down

0 comments on commit 412a177

Please sign in to comment.