• Home
  • Raw
  • Download

Lines Matching refs:bsink

84 static GstFlowReturn gst_video_sink_show_preroll_frame (GstBaseSink * bsink,
86 static GstFlowReturn gst_video_sink_show_frame (GstBaseSink * bsink,
88 static gboolean gst_video_sink_set_caps (GstBaseSink * bsink, GstCaps * caps);
89 static void gst_video_sink_get_times (GstBaseSink * bsink, GstBuffer * buffer,
235 gst_video_sink_set_caps (GstBaseSink * bsink, GstCaps * caps) in gst_video_sink_set_caps() argument
241 vsink = GST_VIDEO_SINK_CAST (bsink); in gst_video_sink_set_caps()
245 GST_ERROR_OBJECT (bsink, "Failed to parse caps %" GST_PTR_FORMAT, caps); in gst_video_sink_set_caps()
249 GST_DEBUG_OBJECT (bsink, "Setting caps %" GST_PTR_FORMAT, caps); in gst_video_sink_set_caps()
259 gst_video_sink_get_times (GstBaseSink * bsink, GstBuffer * buffer, in gst_video_sink_get_times() argument
265 vsink = GST_VIDEO_SINK_CAST (bsink); in gst_video_sink_get_times()
281 gst_video_sink_show_preroll_frame (GstBaseSink * bsink, GstBuffer * buf) in gst_video_sink_show_preroll_frame() argument
287 vsink = GST_VIDEO_SINK_CAST (bsink); in gst_video_sink_show_preroll_frame()
293 GST_DEBUG_OBJECT (bsink, "not rendering frame with ts=%" GST_TIME_FORMAT in gst_video_sink_show_preroll_frame()
300 return parent_class->preroll (bsink, buf); in gst_video_sink_show_preroll_frame()
305 GST_LOG_OBJECT (bsink, "rendering frame, ts=%" GST_TIME_FORMAT, in gst_video_sink_show_preroll_frame()
308 return klass->show_frame (GST_VIDEO_SINK_CAST (bsink), buf); in gst_video_sink_show_preroll_frame()
312 gst_video_sink_show_frame (GstBaseSink * bsink, GstBuffer * buf) in gst_video_sink_show_frame() argument
316 klass = GST_VIDEO_SINK_GET_CLASS (bsink); in gst_video_sink_show_frame()
320 return parent_class->render (bsink, buf); in gst_video_sink_show_frame()
325 GST_LOG_OBJECT (bsink, "rendering frame, ts=%" GST_TIME_FORMAT, in gst_video_sink_show_frame()
328 return klass->show_frame (GST_VIDEO_SINK_CAST (bsink), buf); in gst_video_sink_show_frame()