mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
rmdemux: Remove unused accurate flag.
I couldn't see any reason why this was there in the first place.
This commit is contained in:
parent
2190ad3962
commit
2a892f5856
1 changed files with 1 additions and 2 deletions
|
@ -470,7 +470,7 @@ gst_rmdemux_perform_seek (GstRMDemux * rmdemux, GstEvent * event)
|
||||||
{
|
{
|
||||||
gboolean validated;
|
gboolean validated;
|
||||||
gboolean ret = TRUE;
|
gboolean ret = TRUE;
|
||||||
gboolean flush, accurate;
|
gboolean flush;
|
||||||
GstFormat format;
|
GstFormat format;
|
||||||
gdouble rate;
|
gdouble rate;
|
||||||
GstSeekFlags flags;
|
GstSeekFlags flags;
|
||||||
|
@ -505,7 +505,6 @@ gst_rmdemux_perform_seek (GstRMDemux * rmdemux, GstEvent * event)
|
||||||
GST_DEBUG_OBJECT (rmdemux, "seek, rate %g", rate);
|
GST_DEBUG_OBJECT (rmdemux, "seek, rate %g", rate);
|
||||||
|
|
||||||
flush = flags & GST_SEEK_FLAG_FLUSH;
|
flush = flags & GST_SEEK_FLAG_FLUSH;
|
||||||
accurate = flags & GST_SEEK_FLAG_ACCURATE;
|
|
||||||
|
|
||||||
/* first step is to unlock the streaming thread if it is
|
/* first step is to unlock the streaming thread if it is
|
||||||
* blocked in a chain call, we do this by starting the flush. */
|
* blocked in a chain call, we do this by starting the flush. */
|
||||||
|
|
Loading…
Reference in a new issue