gstpushsrc.h   gstpushsrc.h 
skipping to change at line 32 skipping to change at line 32
*/ */
#ifndef __GST_PUSH_SRC_H__ #ifndef __GST_PUSH_SRC_H__
#define __GST_PUSH_SRC_H__ #define __GST_PUSH_SRC_H__
#include <gst/gst.h> #include <gst/gst.h>
#include <gst/base/gstbasesrc.h> #include <gst/base/gstbasesrc.h>
G_BEGIN_DECLS G_BEGIN_DECLS
#define GST_TYPE_PUSH_SRC (gst_push_src_get_type()) #define GST_TYPE_PUSH_SRC (gst_push_src_get_type())
#define GST_PUSH_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GS #define GST_PUSH_SRC(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),G
T_TYPE_PUSH_SRC,GstPushSrc)) ST_TYPE_PUSH_SRC,GstPushSrc))
#define GST_PUSH_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST #define GST_PUSH_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GS
_TYPE_PUSH_SRC,GstPushSrcClass)) T_TYPE_PUSH_SRC,GstPushSrcClass))
#define GST_PUSH_SRC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_PUSH_SRC, GstPushSrcClass)) #define GST_PUSH_SRC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_PUSH_SRC, GstPushSrcClass))
#define GST_IS_PUSH_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GS #define GST_IS_PUSH_SRC(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),G
T_TYPE_PUSH_SRC)) ST_TYPE_PUSH_SRC))
#define GST_IS_PUSH_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST #define GST_IS_PUSH_SRC_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GS
_TYPE_PUSH_SRC)) T_TYPE_PUSH_SRC))
typedef struct _GstPushSrc GstPushSrc; typedef struct _GstPushSrc GstPushSrc;
typedef struct _GstPushSrcClass GstPushSrcClass; typedef struct _GstPushSrcClass GstPushSrcClass;
/** /**
* GstPushSrc: * GstPushSrc:
* @parent: the parent base source object.
* *
* The opaque #GstPushSrc data structure. * The opaque #GstPushSrc data structure.
*/ */
struct _GstPushSrc { struct _GstPushSrc {
GstBaseSrc parent; GstBaseSrc parent;
/*< private >*/ /*< private >*/
gpointer _gst_reserved[GST_PADDING]; gpointer _gst_reserved[GST_PADDING];
}; };
 End of changes. 3 change blocks. 
10 lines changed or deleted 9 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/