mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
flite: adjust to some modified caps related API changes
This commit is contained in:
parent
5bbdeb321c
commit
cb6b590b0c
1 changed files with 3 additions and 3 deletions
|
@ -104,7 +104,7 @@ static GstFlowReturn gst_flite_test_src_create (GstBaseSrc * basesrc,
|
|||
guint64 offset, guint length, GstBuffer ** buffer);
|
||||
static gboolean
|
||||
gst_flite_test_src_set_caps (GstBaseSrc * basesrc, GstCaps * caps);
|
||||
static void gst_flite_test_src_fixate (GstBaseSrc * bsrc, GstCaps * caps);
|
||||
static GstCaps *gst_flite_test_src_fixate (GstBaseSrc * bsrc, GstCaps * caps);
|
||||
|
||||
static void
|
||||
gst_flite_test_src_class_init (GstFliteTestSrcClass * klass)
|
||||
|
@ -171,7 +171,7 @@ n_bits_set (guint64 x)
|
|||
return c;
|
||||
}
|
||||
|
||||
static void
|
||||
static GstCaps *
|
||||
gst_flite_test_src_fixate (GstBaseSrc * bsrc, GstCaps * caps)
|
||||
{
|
||||
GstStructure *structure;
|
||||
|
@ -262,7 +262,7 @@ gst_flite_test_src_fixate (GstBaseSrc * bsrc, GstCaps * caps)
|
|||
channel_mask, NULL);
|
||||
}
|
||||
|
||||
GST_BASE_SRC_CLASS (parent_class)->fixate (bsrc, caps);
|
||||
return GST_BASE_SRC_CLASS (parent_class)->fixate (bsrc, caps);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue