mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
baseparse: expose gst_base_parse_frame_free() for completeness
API: gst_base_parse_frame_free()
This commit is contained in:
parent
84a92464cf
commit
886246661f
3 changed files with 7 additions and 3 deletions
|
@ -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>
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue