Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
luzpaz
gstreamer
Commits
2dcbe1a4
Commit
2dcbe1a4
authored
May 12, 2009
by
Wim Taymans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bufferlist: make objects opaque
parent
19dc3393
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
20 deletions
+20
-20
gst/gstbufferlist.c
gst/gstbufferlist.c
+20
-1
gst/gstbufferlist.h
gst/gstbufferlist.h
+0
-19
No files found.
gst/gstbufferlist.c
View file @
2dcbe1a4
...
...
@@ -131,10 +131,29 @@
#define GROUP_START NULL
static
const
gpointer
STOLEN
=
""
;
/**
* GstBufferList:
* @mini_object: the parent structure
*
* Opaque list of grouped buffers.
*/
struct
_GstBufferList
{
GstMiniObject
mini_object
;
/*< private > */
GList
*
buffers
;
};
struct
_GstBufferListClass
{
GstMiniObjectClass
mini_object_class
;
};
/**
* GstBufferListIterator:
*
*
I
terator for a #GstBufferList.
*
Opaque i
terator for a #GstBufferList.
*/
struct
_GstBufferListIterator
{
...
...
gst/gstbufferlist.h
View file @
2dcbe1a4
...
...
@@ -82,25 +82,6 @@ typedef GstBuffer* (*GstBufferListDoFunction) (GstBuffer * buffer);
*/
typedef
GstBuffer
*
(
*
GstBufferListDoDataFunction
)
(
GstBuffer
*
buffer
,
gpointer
data
);
/**
* GstBufferList:
* @mini_object: the parent structure
*
* List of grouped buffers.
*/
struct
_GstBufferList
{
GstMiniObject
mini_object
;
/*< private >*/
GList
*
buffers
;
gpointer
_gst_reserved
[
GST_PADDING
];
};
struct
_GstBufferListClass
{
GstMiniObjectClass
mini_object_class
;
};
GType
gst_buffer_list_get_type
(
void
);
/* allocation */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment