mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
da1fe1e0dd
Better creation of pads, test and fix many other classes. Most classes work now, although might not create functional elements.
25 lines
528 B
C
25 lines
528 B
C
% ClassName
|
|
GstPushSrc
|
|
% TYPE_CLASS_NAME
|
|
GST_TYPE_PUSH_SRC
|
|
% pads
|
|
srcpad-simple
|
|
% pkg-config
|
|
gstreamer-base-0.10
|
|
% includes
|
|
#include <gst/base/gstpushsrc.h>
|
|
% prototypes
|
|
static GstFlowReturn gst_replace_create (GstPushSrc * src, GstBuffer ** buf);
|
|
% declare-class
|
|
GstPushSrcClass *pushsrc_class = GST_PUSH_SRC_CLASS (klass);
|
|
% set-methods
|
|
pushsrc_class->create = GST_DEBUG_FUNCPTR (gst_replace_create);
|
|
% methods
|
|
|
|
static GstFlowReturn
|
|
gst_replace_create (GstPushSrc * src, GstBuffer ** buf)
|
|
{
|
|
|
|
return GST_FLOW_OK;
|
|
}
|
|
% end
|