From f730ab02a424ce3d290d401f560359165c470841 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Fri, 17 Feb 2012 15:53:58 -0800 Subject: [PATCH] doc fixups --- docs/gst/gstreamer-sections.txt | 37 ++++++++++++++++++++++++++++++--- gst/gstevent.h | 2 +- gst/gstmemory.h | 4 ++-- 3 files changed, 37 insertions(+), 6 deletions(-) diff --git a/docs/gst/gstreamer-sections.txt b/docs/gst/gstreamer-sections.txt index d4d26350a3..575bd3918b 100644 --- a/docs/gst/gstreamer-sections.txt +++ b/docs/gst/gstreamer-sections.txt @@ -193,9 +193,14 @@ gst_buffer_set_size gst_buffer_n_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_range +gst_buffer_remove_all_memory +gst_buffer_replace_all_memory +gst_buffer_replace_memory gst_buffer_join gst_buffer_merge @@ -933,6 +938,9 @@ gst_event_parse_flush_stop gst_event_new_eos +gst_event_new_gap +gst_event_parse_gap + gst_event_new_stream_start gst_event_new_segment @@ -1239,9 +1247,14 @@ GstMemory GstMemoryInfo GstAllocator GstMemoryFlags +GstMapInfo +GST_MAP_INFO_INIT GstMapFlags +GST_MEMORY_FLAGS +GST_MEMORY_FLAG_IS_SET +GST_MEMORY_IS_READONLY GST_MAP_READWRITE -GstMemoryAllocFunction +GstAllocatorAllocFunction GstMemoryMapFunction GstMemoryUnmapFunction GstMemoryFreeFunction @@ -1253,6 +1266,7 @@ gst_memory_alignment gst_allocator_alloc gst_memory_new_wrapped +gst_memory_make_mapped gst_memory_ref gst_memory_unref @@ -1260,7 +1274,7 @@ gst_memory_unref gst_memory_get_sizes gst_memory_resize -gst_memory_is_writable +gst_memory_is_exclusive gst_memory_map gst_memory_unmap @@ -1276,6 +1290,7 @@ gst_allocator_register gst_allocator_set_default GST_TYPE_MEMORY +GST_MEMORY_CAST GST_TYPE_MAP_FLAGS GST_TYPE_MEMORY_FLAGS gst_map_flags_get_type @@ -1526,6 +1541,14 @@ GstPadProbeReturn GstPadProbeType GST_PAD_PROBE_TYPE_BLOCKING 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 gst_pad_get_name @@ -2069,6 +2092,14 @@ gst_query_new_segment gst_query_set_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 gst_query_new_buffering gst_query_set_buffering_percent diff --git a/gst/gstevent.h b/gst/gstevent.h index ec5ea686d6..19931c9eb5 100644 --- a/gst/gstevent.h +++ b/gst/gstevent.h @@ -484,7 +484,7 @@ void gst_event_parse_flush_stop (GstEvent *event, gboolean *rese GstEvent * gst_event_new_eos (void) G_GNUC_MALLOC; /* GAP event */ -GstEvent * gst_event_new_gap (GstClockTime ts, +GstEvent * gst_event_new_gap (GstClockTime timestamp, GstClockTime duration) G_GNUC_MALLOC; void gst_event_parse_gap (GstEvent * event, diff --git a/gst/gstmemory.h b/gst/gstmemory.h index 354ea62a06..4a8ae0ff2a 100644 --- a/gst/gstmemory.h +++ b/gst/gstmemory.h @@ -258,7 +258,7 @@ typedef gboolean (*GstMemoryIsSpanFunction) (GstMemory *mem1, GstMemory *m /** * GstMemoryInfo: - * @type: the memory type this allocator provides + * @mem_type: the memory type this allocator provides * @alloc: the implementation of the GstAllocatorAllocFunction * @mem_map: the implementation of the GstMemoryMapFunction * @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); 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); void gst_allocator_set_default (GstAllocator * allocator);