mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +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 _GstGioSinkClass GstGioSinkClass;
|
||||
|
||||
/**
|
||||
* GstGioSink:
|
||||
*
|
||||
* Opaque data structure.
|
||||
*/
|
||||
struct _GstGioSink
|
||||
{
|
||||
GstBaseSink sink;
|
||||
|
||||
/*< private >*/
|
||||
GCancellable *cancel;
|
||||
GFile *file;
|
||||
gchar *location;
|
||||
|
|
|
@ -42,10 +42,16 @@ G_BEGIN_DECLS
|
|||
typedef struct _GstGioSrc GstGioSrc;
|
||||
typedef struct _GstGioSrcClass GstGioSrcClass;
|
||||
|
||||
/**
|
||||
* GstGioSrc:
|
||||
*
|
||||
* Opaque data structure.
|
||||
*/
|
||||
struct _GstGioSrc
|
||||
{
|
||||
GstBaseSrc src;
|
||||
|
||||
|
||||
/*< private >*/
|
||||
GCancellable *cancel;
|
||||
GFile *file;
|
||||
gchar *location;
|
||||
|
|
Loading…
Reference in a new issue