mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 02:28:27 +00:00
queue: remove useless PROXY_ALLOCATION flag
This commit is contained in:
parent
edd2ffe4d4
commit
0addca0810
2 changed files with 0 additions and 2 deletions
|
@ -391,7 +391,6 @@ gst_queue_init (GstQueue * queue)
|
|||
gst_pad_set_event_function (queue->sinkpad, gst_queue_handle_sink_event);
|
||||
gst_pad_set_query_function (queue->sinkpad, gst_queue_handle_sink_query);
|
||||
GST_PAD_SET_PROXY_CAPS (queue->sinkpad);
|
||||
GST_PAD_SET_PROXY_ALLOCATION (queue->sinkpad);
|
||||
gst_element_add_pad (GST_ELEMENT (queue), queue->sinkpad);
|
||||
|
||||
queue->srcpad = gst_pad_new_from_static_template (&srctemplate, "src");
|
||||
|
|
|
@ -399,7 +399,6 @@ gst_queue2_init (GstQueue2 * queue)
|
|||
gst_pad_set_query_function (queue->sinkpad,
|
||||
GST_DEBUG_FUNCPTR (gst_queue2_handle_sink_query));
|
||||
GST_PAD_SET_PROXY_CAPS (queue->sinkpad);
|
||||
GST_PAD_SET_PROXY_ALLOCATION (queue->sinkpad);
|
||||
gst_element_add_pad (GST_ELEMENT (queue), queue->sinkpad);
|
||||
|
||||
queue->srcpad = gst_pad_new_from_static_template (&srctemplate, "src");
|
||||
|
|
Loading…
Reference in a new issue