Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2020-07-10 12:58:09 +0300
committerSebastian Dröge <sebastian@centricular.com>2020-07-10 13:02:50 +0300
commitc259d75a21113fa5e2cf016b7bddf2dadba5c063 (patch)
tree2d8a24073fa41c189e3a3fd47154cb1bc2d1d81d
parentc19a84bee160f90316a44d94b912edfa4efedb4c (diff)
video/gif: Don't set NON_DROPPABLE flag on buffers
It doesn't make sense in this context and the flag only exists since 1.12.
-rw-r--r--video/gif/src/gifenc.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/video/gif/src/gifenc.rs b/video/gif/src/gifenc.rs
index 8c3f9cefe..d2c938741 100644
--- a/video/gif/src/gifenc.rs
+++ b/video/gif/src/gifenc.rs
@@ -408,7 +408,6 @@ impl GifEnc {
{
let trailer_buffer = trailer_buffer.get_mut().unwrap();
trailer_buffer.set_pts(state.last_actual_pts);
- trailer_buffer.set_flags(gst::BufferFlags::NON_DROPPABLE);
}
// Initialize the encoder again, to be ready for a new round without format change