Skip to content

Commit

Permalink
Attach mosaic next time call
Browse files Browse the repository at this point in the history
  • Loading branch information
m-herrera committed Dec 14, 2021
1 parent deb65c2 commit cba6988
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ext/tiovx/gsttiovxmosaic.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,7 @@ static gboolean gst_tiovx_mosaic_release_buffer (GstTIOVXMiso * agg);
static gboolean gst_tiovx_mosaic_deinit_module (GstTIOVXMiso * agg);
static GstCaps *gst_tiovx_mosaic_fixate_caps (GstTIOVXMiso * self,
GList * sink_caps_list, GstCaps * src_caps);
static GstClockTime gst_tiovx_mosaic_get_next_time (GstAggregator * agg);
static void gst_tiovx_mosaic_finalize (GObject * object);

static gboolean gst_tiovx_mosaic_load_mosaic_module_objects (GstTIOVXMosaic *
Expand All @@ -373,11 +374,13 @@ gst_tiovx_mosaic_class_init (GstTIOVXMosaicClass * klass)
{
GObjectClass *gobject_class = NULL;
GstElementClass *gstelement_class = NULL;
GstAggregatorClass *aggregator_class = NULL;
GstTIOVXMisoClass *gsttiovxmiso_class = NULL;

gobject_class = G_OBJECT_CLASS (klass);
gstelement_class = GST_ELEMENT_CLASS (klass);
gsttiovxmiso_class = GST_TIOVX_MISO_CLASS (klass);
aggregator_class = GST_AGGREGATOR_CLASS (klass);

gst_element_class_set_details_simple (gstelement_class,
"TIOVX Mosaic",
Expand Down Expand Up @@ -431,6 +434,9 @@ gst_tiovx_mosaic_class_init (GstTIOVXMosaicClass * klass)
gsttiovxmiso_class->deinit_module =
GST_DEBUG_FUNCPTR (gst_tiovx_mosaic_deinit_module);

aggregator_class->get_next_time =
GST_DEBUG_FUNCPTR (gst_tiovx_mosaic_get_next_time);

gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_tiovx_mosaic_finalize);
}

Expand Down

0 comments on commit cba6988

Please sign in to comment.