mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
doc fixups
This commit is contained in:
parent
dc304041ed
commit
f730ab02a4
3 changed files with 37 additions and 6 deletions
|
@ -193,9 +193,14 @@ gst_buffer_set_size
|
||||||
|
|
||||||
gst_buffer_n_memory
|
gst_buffer_n_memory
|
||||||
gst_buffer_take_memory
|
gst_buffer_take_memory
|
||||||
gst_buffer_peek_memory
|
gst_buffer_append_memory
|
||||||
|
gst_buffer_get_memory
|
||||||
|
gst_buffer_get_merged_memory
|
||||||
gst_buffer_remove_memory
|
gst_buffer_remove_memory
|
||||||
gst_buffer_remove_memory_range
|
gst_buffer_remove_memory_range
|
||||||
|
gst_buffer_remove_all_memory
|
||||||
|
gst_buffer_replace_all_memory
|
||||||
|
gst_buffer_replace_memory
|
||||||
|
|
||||||
gst_buffer_join
|
gst_buffer_join
|
||||||
gst_buffer_merge
|
gst_buffer_merge
|
||||||
|
@ -933,6 +938,9 @@ gst_event_parse_flush_stop
|
||||||
|
|
||||||
gst_event_new_eos
|
gst_event_new_eos
|
||||||
|
|
||||||
|
gst_event_new_gap
|
||||||
|
gst_event_parse_gap
|
||||||
|
|
||||||
gst_event_new_stream_start
|
gst_event_new_stream_start
|
||||||
|
|
||||||
gst_event_new_segment
|
gst_event_new_segment
|
||||||
|
@ -1239,9 +1247,14 @@ GstMemory
|
||||||
GstMemoryInfo
|
GstMemoryInfo
|
||||||
GstAllocator
|
GstAllocator
|
||||||
GstMemoryFlags
|
GstMemoryFlags
|
||||||
|
GstMapInfo
|
||||||
|
GST_MAP_INFO_INIT
|
||||||
GstMapFlags
|
GstMapFlags
|
||||||
|
GST_MEMORY_FLAGS
|
||||||
|
GST_MEMORY_FLAG_IS_SET
|
||||||
|
GST_MEMORY_IS_READONLY
|
||||||
GST_MAP_READWRITE
|
GST_MAP_READWRITE
|
||||||
GstMemoryAllocFunction
|
GstAllocatorAllocFunction
|
||||||
GstMemoryMapFunction
|
GstMemoryMapFunction
|
||||||
GstMemoryUnmapFunction
|
GstMemoryUnmapFunction
|
||||||
GstMemoryFreeFunction
|
GstMemoryFreeFunction
|
||||||
|
@ -1253,6 +1266,7 @@ gst_memory_alignment
|
||||||
|
|
||||||
gst_allocator_alloc
|
gst_allocator_alloc
|
||||||
gst_memory_new_wrapped
|
gst_memory_new_wrapped
|
||||||
|
gst_memory_make_mapped
|
||||||
|
|
||||||
gst_memory_ref
|
gst_memory_ref
|
||||||
gst_memory_unref
|
gst_memory_unref
|
||||||
|
@ -1260,7 +1274,7 @@ gst_memory_unref
|
||||||
gst_memory_get_sizes
|
gst_memory_get_sizes
|
||||||
gst_memory_resize
|
gst_memory_resize
|
||||||
|
|
||||||
gst_memory_is_writable
|
gst_memory_is_exclusive
|
||||||
|
|
||||||
gst_memory_map
|
gst_memory_map
|
||||||
gst_memory_unmap
|
gst_memory_unmap
|
||||||
|
@ -1276,6 +1290,7 @@ gst_allocator_register
|
||||||
gst_allocator_set_default
|
gst_allocator_set_default
|
||||||
<SUBSECTION Standard>
|
<SUBSECTION Standard>
|
||||||
GST_TYPE_MEMORY
|
GST_TYPE_MEMORY
|
||||||
|
GST_MEMORY_CAST
|
||||||
GST_TYPE_MAP_FLAGS
|
GST_TYPE_MAP_FLAGS
|
||||||
GST_TYPE_MEMORY_FLAGS
|
GST_TYPE_MEMORY_FLAGS
|
||||||
gst_map_flags_get_type
|
gst_map_flags_get_type
|
||||||
|
@ -1526,6 +1541,14 @@ GstPadProbeReturn
|
||||||
GstPadProbeType
|
GstPadProbeType
|
||||||
GST_PAD_PROBE_TYPE_BLOCKING
|
GST_PAD_PROBE_TYPE_BLOCKING
|
||||||
GST_PAD_PROBE_TYPE_SCHEDULING
|
GST_PAD_PROBE_TYPE_SCHEDULING
|
||||||
|
GST_PAD_PROBE_TYPE_ALL_BOTH
|
||||||
|
GST_PAD_PROBE_TYPE_BLOCK_DOWNSTREAM
|
||||||
|
GST_PAD_PROBE_TYPE_BLOCK_UPSTREAM
|
||||||
|
GST_PAD_PROBE_TYPE_DATA_BOTH
|
||||||
|
GST_PAD_PROBE_TYPE_DATA_DOWNSTREAM
|
||||||
|
GST_PAD_PROBE_TYPE_DATA_UPSTREAM
|
||||||
|
GST_PAD_PROBE_TYPE_EVENT_BOTH
|
||||||
|
GST_PAD_PROBE_TYPE_QUERY_BOTH
|
||||||
|
|
||||||
<SUBSECTION Application>
|
<SUBSECTION Application>
|
||||||
gst_pad_get_name
|
gst_pad_get_name
|
||||||
|
@ -2069,6 +2092,14 @@ gst_query_new_segment
|
||||||
gst_query_set_segment
|
gst_query_set_segment
|
||||||
gst_query_parse_segment
|
gst_query_parse_segment
|
||||||
|
|
||||||
|
gst_query_new_caps
|
||||||
|
gst_query_parse_caps
|
||||||
|
gst_query_parse_caps_result
|
||||||
|
|
||||||
|
gst_query_new_accept_caps
|
||||||
|
gst_query_parse_accept_caps
|
||||||
|
gst_query_parse_accept_caps_result
|
||||||
|
|
||||||
GstBufferingMode
|
GstBufferingMode
|
||||||
gst_query_new_buffering
|
gst_query_new_buffering
|
||||||
gst_query_set_buffering_percent
|
gst_query_set_buffering_percent
|
||||||
|
|
|
@ -484,7 +484,7 @@ void gst_event_parse_flush_stop (GstEvent *event, gboolean *rese
|
||||||
GstEvent * gst_event_new_eos (void) G_GNUC_MALLOC;
|
GstEvent * gst_event_new_eos (void) G_GNUC_MALLOC;
|
||||||
|
|
||||||
/* GAP event */
|
/* GAP event */
|
||||||
GstEvent * gst_event_new_gap (GstClockTime ts,
|
GstEvent * gst_event_new_gap (GstClockTime timestamp,
|
||||||
GstClockTime duration) G_GNUC_MALLOC;
|
GstClockTime duration) G_GNUC_MALLOC;
|
||||||
|
|
||||||
void gst_event_parse_gap (GstEvent * event,
|
void gst_event_parse_gap (GstEvent * event,
|
||||||
|
|
|
@ -258,7 +258,7 @@ typedef gboolean (*GstMemoryIsSpanFunction) (GstMemory *mem1, GstMemory *m
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstMemoryInfo:
|
* GstMemoryInfo:
|
||||||
* @type: the memory type this allocator provides
|
* @mem_type: the memory type this allocator provides
|
||||||
* @alloc: the implementation of the GstAllocatorAllocFunction
|
* @alloc: the implementation of the GstAllocatorAllocFunction
|
||||||
* @mem_map: the implementation of the GstMemoryMapFunction
|
* @mem_map: the implementation of the GstMemoryMapFunction
|
||||||
* @mem_unmap: the implementation of the GstMemoryUnmapFunction
|
* @mem_unmap: the implementation of the GstMemoryUnmapFunction
|
||||||
|
@ -295,7 +295,7 @@ const gchar * gst_allocator_get_memory_type (GstAllocator * allocator);
|
||||||
GstAllocator * gst_allocator_ref (GstAllocator * allocator);
|
GstAllocator * gst_allocator_ref (GstAllocator * allocator);
|
||||||
void gst_allocator_unref (GstAllocator * allocator);
|
void gst_allocator_unref (GstAllocator * allocator);
|
||||||
|
|
||||||
void gst_allocator_register (const gchar *name, GstAllocator *alloc);
|
void gst_allocator_register (const gchar *name, GstAllocator *allocator);
|
||||||
GstAllocator * gst_allocator_find (const gchar *name);
|
GstAllocator * gst_allocator_find (const gchar *name);
|
||||||
|
|
||||||
void gst_allocator_set_default (GstAllocator * allocator);
|
void gst_allocator_set_default (GstAllocator * allocator);
|
||||||
|
|
Loading…
Reference in a new issue