mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/gdp/gstgdpdepay.c: proxying get/set caps is the wrong thing to do, since we really do change caps quite fundament...
Original commit message from CVS: * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init): proxying get/set caps is the wrong thing to do, since we really do change caps quite fundamentally * tests/check/elements/gdpdepay.c: * tests/check/elements/gdppay.c: remove declaration of buffers, it's already done in gstcheck.h
This commit is contained in:
parent
afe32c11ec
commit
0d7a03eda3
3 changed files with 0 additions and 6 deletions
|
@ -119,10 +119,6 @@ gst_gdp_depay_init (GstGDPDepay * gdpdepay, GstGDPDepayClass * g_class)
|
||||||
{
|
{
|
||||||
gdpdepay->sinkpad =
|
gdpdepay->sinkpad =
|
||||||
gst_pad_new_from_static_template (&gdp_depay_sink_template, "sink");
|
gst_pad_new_from_static_template (&gdp_depay_sink_template, "sink");
|
||||||
gst_pad_set_setcaps_function (gdpdepay->sinkpad,
|
|
||||||
GST_DEBUG_FUNCPTR (gst_pad_proxy_setcaps));
|
|
||||||
gst_pad_set_getcaps_function (gdpdepay->sinkpad,
|
|
||||||
GST_DEBUG_FUNCPTR (gst_pad_proxy_getcaps));
|
|
||||||
gst_pad_set_chain_function (gdpdepay->sinkpad,
|
gst_pad_set_chain_function (gdpdepay->sinkpad,
|
||||||
GST_DEBUG_FUNCPTR (gst_gdp_depay_chain));
|
GST_DEBUG_FUNCPTR (gst_gdp_depay_chain));
|
||||||
gst_element_add_pad (GST_ELEMENT (gdpdepay), gdpdepay->sinkpad);
|
gst_element_add_pad (GST_ELEMENT (gdpdepay), gdpdepay->sinkpad);
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
#include <gst/check/gstcheck.h>
|
#include <gst/check/gstcheck.h>
|
||||||
#include <gst/dataprotocol/dataprotocol.h>
|
#include <gst/dataprotocol/dataprotocol.h>
|
||||||
|
|
||||||
GList *buffers = NULL;
|
|
||||||
gboolean have_eos = FALSE;
|
gboolean have_eos = FALSE;
|
||||||
|
|
||||||
/* For ease of programming we use globals to keep refs for our floating
|
/* For ease of programming we use globals to keep refs for our floating
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
#include <gst/check/gstcheck.h>
|
#include <gst/check/gstcheck.h>
|
||||||
#include <gst/dataprotocol/dataprotocol.h>
|
#include <gst/dataprotocol/dataprotocol.h>
|
||||||
|
|
||||||
GList *buffers = NULL;
|
|
||||||
gboolean have_eos = FALSE;
|
gboolean have_eos = FALSE;
|
||||||
|
|
||||||
/* For ease of programming we use globals to keep refs for our floating
|
/* For ease of programming we use globals to keep refs for our floating
|
||||||
|
|
Loading…
Reference in a new issue