dav1d: Remove unnecessary frame dropping loop

After flushing there are no frames left anymore that could be dropped.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1055>
This commit is contained in:
Sebastian Dröge 2023-01-22 00:28:15 +02:00
parent c5a625ae28
commit f62d07633d

View file

@ -379,13 +379,6 @@ impl Dav1dDec {
}
}
fn drop_decoded_pictures(&self, state_guard: &mut MutexGuard<Option<State>>) {
while let Ok(Some(pic)) = self.pending_picture(state_guard) {
gst::debug!(CAT, imp: self, "Dropping picture {}", pic.offset());
drop(pic);
}
}
fn pending_picture(
&self,
state_guard: &mut MutexGuard<Option<State>>,
@ -738,7 +731,6 @@ impl VideoDecoderImpl for Dav1dDec {
if state_guard.is_some() {
let state = state_guard.as_mut().unwrap();
self.flush_decoder(state);
self.drop_decoded_pictures(&mut state_guard);
}
}