mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
gst/gstelement.c (gst_element_requires_clock, gst_element_provides_clock, gst_element_request_pad, gst_element_class_...
Original commit message from CVS: * gst/gstelement.c (gst_element_requires_clock, gst_element_provides_clock, gst_element_request_pad, gst_element_class_set_details, gst_element_class_set_details_simple, gst_element_default_send_event, gst_element_abort_state, gst_element_continue_state, gst_element_set_state, gst_element_set_state_func, iterator_activate_fold_with_resync): * gst/gstpad.c (gst_pad_activate_pull, gst_pad_set_getcaps_function, gst_pad_fixate_caps, gst_pad_configure_sink, gst_pad_configure_src, gst_pad_query, gst_pad_save_thyself, handle_pad_block, gst_pad_push, gst_pad_get_range, gst_pad_pull_range): * gst/gstpad.h (GST_PAD_LINK_SUCCESSFUL, GST_FLOW_CUSTOM_SUCCESS, GST_FLOW_NOT_SUPPORTED, GST_FLOW_IS_FATAL, GstPadActivateFunction, GstPadActivateModeFunction, GstPadChainFunction, GstPadGetCapsFunction, GstPadAcceptCapsFunction, GstPadFixateCapsFunction, GstPadTemplate): * gst/gstpipeline.c (gst_pipeline_change_state, gst_pipeline_set_new_stream_time, gst_pipeline_use_clock, gst_pipeline_set_clock, gst_pipeline_auto_clock, gst_pipeline_get_delay): Whitespace and docs fixes.
This commit is contained in:
parent
e645e3d2f6
commit
e87a530b73
5 changed files with 108 additions and 87 deletions
23
ChangeLog
23
ChangeLog
|
@ -1,3 +1,26 @@
|
|||
2007-05-22 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstelement.c (gst_element_requires_clock,
|
||||
gst_element_provides_clock, gst_element_request_pad,
|
||||
gst_element_class_set_details, gst_element_class_set_details_simple,
|
||||
gst_element_default_send_event, gst_element_abort_state,
|
||||
gst_element_continue_state, gst_element_set_state,
|
||||
gst_element_set_state_func, iterator_activate_fold_with_resync):
|
||||
* gst/gstpad.c (gst_pad_activate_pull, gst_pad_set_getcaps_function,
|
||||
gst_pad_fixate_caps, gst_pad_configure_sink, gst_pad_configure_src,
|
||||
gst_pad_query, gst_pad_save_thyself, handle_pad_block, gst_pad_push,
|
||||
gst_pad_get_range, gst_pad_pull_range):
|
||||
* gst/gstpad.h (GST_PAD_LINK_SUCCESSFUL, GST_FLOW_CUSTOM_SUCCESS,
|
||||
GST_FLOW_NOT_SUPPORTED, GST_FLOW_IS_FATAL, GstPadActivateFunction,
|
||||
GstPadActivateModeFunction, GstPadChainFunction,
|
||||
GstPadGetCapsFunction, GstPadAcceptCapsFunction,
|
||||
GstPadFixateCapsFunction, GstPadTemplate):
|
||||
* gst/gstpipeline.c (gst_pipeline_change_state,
|
||||
gst_pipeline_set_new_stream_time, gst_pipeline_use_clock,
|
||||
gst_pipeline_set_clock, gst_pipeline_auto_clock,
|
||||
gst_pipeline_get_delay):
|
||||
Whitespace and docs fixes.
|
||||
|
||||
2007-05-21 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* libs/gst/controller/gstinterpolation.c:
|
||||
|
|
|
@ -2475,7 +2475,6 @@ gst_pad_get_pad_template_caps (GstPad * pad)
|
|||
return gst_static_caps_get (&anycaps);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* gst_pad_get_peer:
|
||||
* @pad: a #GstPad to get the peer of.
|
||||
|
|
|
@ -94,7 +94,8 @@ typedef enum {
|
|||
* @GST_FLOW_CUSTOM_SUCCESS: Elements can use values starting from
|
||||
* this to define custom success codes.
|
||||
* Since 0.10.7.
|
||||
* @GST_FLOW_RESEND: Resend buffer, possibly with new caps.
|
||||
* @GST_FLOW_RESEND: Resend buffer, possibly with new caps (not
|
||||
* send yet).
|
||||
* @GST_FLOW_OK: Data passing was ok.
|
||||
* @GST_FLOW_NOT_LINKED: Pad is not linked.
|
||||
* @GST_FLOW_WRONG_STATE: Pad is in wrong state.
|
||||
|
|
|
@ -235,7 +235,6 @@ gst_pipeline_class_init (gpointer g_class, gpointer class_data)
|
|||
GST_DEBUG_FUNCPTR (gst_pipeline_change_state);
|
||||
gstelement_class->provide_clock =
|
||||
GST_DEBUG_FUNCPTR (gst_pipeline_provide_clock_func);
|
||||
|
||||
gstbin_class->handle_message =
|
||||
GST_DEBUG_FUNCPTR (gst_pipeline_handle_message);
|
||||
}
|
||||
|
@ -600,7 +599,6 @@ gst_pipeline_handle_message (GstBin * bin, GstMessage * message)
|
|||
GST_BIN_CLASS (parent_class)->handle_message (bin, message);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* gst_pipeline_get_bus:
|
||||
* @pipeline: a #GstPipeline
|
||||
|
|
Loading…
Reference in a new issue