mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
30 lines
562 B
C
30 lines
562 B
C
|
% ClassName
|
||
|
GstVideoSink
|
||
|
% TYPE_CLASS_NAME
|
||
|
GST_TYPE_VIDEO_SINK
|
||
|
% pkg-config
|
||
|
gstreamer-video-0.10
|
||
|
% includes
|
||
|
#include <gst/video/gstvideosink.h>
|
||
|
% prototypes
|
||
|
|
||
|
static GstFlowReturn
|
||
|
gst_replace_show_frame (GstVideoSink * video_sink, GstBuffer * buf);
|
||
|
|
||
|
|
||
|
% declare-class
|
||
|
GstVideoSinkClass *video_sink_class = GST_VIDEO_SINK_CLASS (klass);
|
||
|
% set-methods
|
||
|
video_sink_class->show_frame = GST_DEBUG_FUNCPTR (gst_replace_show_frame);
|
||
|
% methods
|
||
|
|
||
|
static GstFlowReturn
|
||
|
gst_replace_show_frame (GstVideoSink * video_sink, GstBuffer * buf)
|
||
|
{
|
||
|
|
||
|
return GST_FLOW_OK;
|
||
|
}
|
||
|
|
||
|
% end
|
||
|
|