diff --git a/net/rtp/src/gcc/imp.rs b/net/rtp/src/gcc/imp.rs index 30ca1697..598405a3 100644 --- a/net/rtp/src/gcc/imp.rs +++ b/net/rtp/src/gcc/imp.rs @@ -1096,7 +1096,9 @@ impl BandwidthEstimator { if !list.is_empty() { if let Err(err) = bwe.imp().push_list(list) { - gst::error!(CAT, obj: bwe, "pause task, reason: {err:?}"); + if err != gst::FlowError::Flushing { + gst::error!(CAT, obj: bwe, "pause task, reason: {err:?}"); + } pause() } }