mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
docs/plugins/gst-plugins-bad-plugins.hierarchy: Update hierarchy.
Original commit message from CVS: * docs/plugins/gst-plugins-bad-plugins.hierarchy: Update hierarchy. * ext/gio/gstgiosink.h: * ext/gio/gstgiosrc.h: Mark private fields of the instance structs private.
This commit is contained in:
parent
2abc59f9f8
commit
d66e42c7c0
2 changed files with 13 additions and 1 deletions
|
@ -42,10 +42,16 @@ G_BEGIN_DECLS
|
||||||
typedef struct _GstGioSink GstGioSink;
|
typedef struct _GstGioSink GstGioSink;
|
||||||
typedef struct _GstGioSinkClass GstGioSinkClass;
|
typedef struct _GstGioSinkClass GstGioSinkClass;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstGioSink:
|
||||||
|
*
|
||||||
|
* Opaque data structure.
|
||||||
|
*/
|
||||||
struct _GstGioSink
|
struct _GstGioSink
|
||||||
{
|
{
|
||||||
GstBaseSink sink;
|
GstBaseSink sink;
|
||||||
|
|
||||||
|
/*< private >*/
|
||||||
GCancellable *cancel;
|
GCancellable *cancel;
|
||||||
GFile *file;
|
GFile *file;
|
||||||
gchar *location;
|
gchar *location;
|
||||||
|
|
|
@ -42,10 +42,16 @@ G_BEGIN_DECLS
|
||||||
typedef struct _GstGioSrc GstGioSrc;
|
typedef struct _GstGioSrc GstGioSrc;
|
||||||
typedef struct _GstGioSrcClass GstGioSrcClass;
|
typedef struct _GstGioSrcClass GstGioSrcClass;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstGioSrc:
|
||||||
|
*
|
||||||
|
* Opaque data structure.
|
||||||
|
*/
|
||||||
struct _GstGioSrc
|
struct _GstGioSrc
|
||||||
{
|
{
|
||||||
GstBaseSrc src;
|
GstBaseSrc src;
|
||||||
|
|
||||||
|
/*< private >*/
|
||||||
GCancellable *cancel;
|
GCancellable *cancel;
|
||||||
GFile *file;
|
GFile *file;
|
||||||
gchar *location;
|
gchar *location;
|
||||||
|
|
Loading…
Reference in a new issue