mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
mxfmux: instantiate adapter at the correct place
This commit is contained in:
parent
341228ea04
commit
7771488edb
1 changed files with 1 additions and 1 deletions
|
@ -104,6 +104,7 @@ gst_mxf_mux_pad_class_init (GstMXFMuxPadClass * klass)
|
||||||
static void
|
static void
|
||||||
gst_mxf_mux_pad_init (GstMXFMuxPad * pad)
|
gst_mxf_mux_pad_init (GstMXFMuxPad * pad)
|
||||||
{
|
{
|
||||||
|
pad->adapter = gst_adapter_new ();
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src",
|
static GstStaticPadTemplate src_templ = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
|
@ -454,7 +455,6 @@ gst_mxf_mux_create_new_pad (GstAggregator * aggregator,
|
||||||
GST_PAD_SINK, "template", templ, NULL);
|
GST_PAD_SINK, "template", templ, NULL);
|
||||||
g_free (name);
|
g_free (name);
|
||||||
pad->last_timestamp = 0;
|
pad->last_timestamp = 0;
|
||||||
pad->adapter = gst_adapter_new ();
|
|
||||||
pad->writer = writer;
|
pad->writer = writer;
|
||||||
|
|
||||||
gst_pad_use_fixed_caps (GST_PAD_CAST (pad));
|
gst_pad_use_fixed_caps (GST_PAD_CAST (pad));
|
||||||
|
|
Loading…
Reference in a new issue