mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
qtdemux: Disable usage of allocation queries
This can only reliably work if demuxers have a separate streaming thread per srcpad. This should be done in a demuxer base class, which integrates parts of multiqueue https://bugzilla.gnome.org/show_bug.cgi?id=701856
This commit is contained in:
parent
46a137c810
commit
b001da2926
1 changed files with 9 additions and 0 deletions
|
@ -5457,6 +5457,14 @@ qtdemux_tree_get_sibling_by_type (GNode * node, guint32 fourcc)
|
||||||
static void
|
static void
|
||||||
qtdemux_do_allocation (GstQTDemux * qtdemux, QtDemuxStream * stream)
|
qtdemux_do_allocation (GstQTDemux * qtdemux, QtDemuxStream * stream)
|
||||||
{
|
{
|
||||||
|
/* FIXME: This can only reliably work if demuxers have a
|
||||||
|
* separate streaming thread per srcpad. This should be
|
||||||
|
* done in a demuxer base class, which integrates parts
|
||||||
|
* of multiqueue
|
||||||
|
*
|
||||||
|
* https://bugzilla.gnome.org/show_bug.cgi?id=701856
|
||||||
|
*/
|
||||||
|
#if 0
|
||||||
GstQuery *query;
|
GstQuery *query;
|
||||||
|
|
||||||
query = gst_query_new_allocation (stream->caps, FALSE);
|
query = gst_query_new_allocation (stream->caps, FALSE);
|
||||||
|
@ -5480,6 +5488,7 @@ qtdemux_do_allocation (GstQTDemux * qtdemux, QtDemuxStream * stream)
|
||||||
stream->use_allocator = FALSE;
|
stream->use_allocator = FALSE;
|
||||||
}
|
}
|
||||||
gst_query_unref (query);
|
gst_query_unref (query);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
|
Loading…
Reference in a new issue