Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
luzpaz
gstreamer
Commits
88624666
Commit
88624666
authored
Apr 15, 2011
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
baseparse: expose gst_base_parse_frame_free() for completeness
API: gst_base_parse_frame_free()
parent
84a92464
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
docs/libs/gstreamer-libs-sections.txt
docs/libs/gstreamer-libs-sections.txt
+4
-0
libs/gst/base/gstbaseparse.c
libs/gst/base/gstbaseparse.c
+1
-3
libs/gst/base/gstbaseparse.h
libs/gst/base/gstbaseparse.h
+2
-0
No files found.
docs/libs/gstreamer-libs-sections.txt
View file @
88624666
...
...
@@ -240,7 +240,10 @@ gst_base_parse_convert_default
gst_base_parse_add_index_entry
GstBaseParseFrameFlags
gst_base_parse_frame_new
gst_base_parse_frame_init
gst_base_parse_frame_free
gst_base_parse_push_frame
GST_BASE_PARSE_SRC_PAD
...
...
@@ -255,6 +258,7 @@ GST_IS_BASE_PARSE_CLASS
GST_BASE_PARSE_GET_CLASS
<SUBSECTION Private>
gst_base_parse_get_type
gst_base_parse_frame_get_type
</SECTION>
<SECTION>
...
...
libs/gst/base/gstbaseparse.c
View file @
88624666
...
...
@@ -399,8 +399,6 @@ static GstFlowReturn gst_base_parse_process_fragment (GstBaseParse * parse,
static
gboolean
gst_base_parse_is_seekable
(
GstBaseParse
*
parse
);
static
void
gst_base_parse_frame_free
(
GstBaseParseFrame
*
frame
);
static
void
gst_base_parse_clear_queues
(
GstBaseParse
*
parse
)
{
...
...
@@ -552,7 +550,7 @@ gst_base_parse_frame_copy (GstBaseParseFrame * frame)
return
copy
;
}
static
void
void
gst_base_parse_frame_free
(
GstBaseParseFrame
*
frame
)
{
GST_TRACE
(
"freeing frame %p"
,
frame
);
...
...
libs/gst/base/gstbaseparse.h
View file @
88624666
...
...
@@ -266,6 +266,8 @@ GstBaseParseFrame * gst_base_parse_frame_new (GstBuffer * buffer,
void
gst_base_parse_frame_init
(
GstBaseParseFrame
*
frame
);
void
gst_base_parse_frame_free
(
GstBaseParseFrame
*
frame
);
GstFlowReturn
gst_base_parse_push_frame
(
GstBaseParse
*
parse
,
GstBaseParseFrame
*
frame
);
...
...
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