Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Du <[email protected]>
  • Loading branch information
frankdjx committed Jan 25, 2024
1 parent d088046 commit 14d567a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/st2110/st_rx_video_session.c
Original file line number Diff line number Diff line change
Expand Up @@ -2675,7 +2675,7 @@ static int rv_pkt_rx_tasklet(struct st_rx_video_session_impl* s) {
s->stat_burst_succ_cnt++;
s->stat_burst_pkts_sum += rv;
if (rv > s->stat_burst_pkts_max) s->stat_burst_pkts_max = rv;
if (rv >= s->rx_burst_size) {
if (rv >= (s->rx_burst_size / 2)) {
s->in_continuous_burst[s_port] = true;
}

Expand Down

0 comments on commit 14d567a

Please sign in to comment.