gst/gstmessage.*: don't use new, it's a C++ keyword

Original commit message from CVS:

* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_parse_state_changed):
* gst/gstmessage.h:
don't use new, it's a C++ keyword
This commit is contained in:
Thomas Vander Stichele 2005-10-09 17:53:33 +00:00
parent 4189a53c64
commit d8efd5cc51
3 changed files with 30 additions and 23 deletions

View file

@ -1,3 +1,10 @@
2005-10-09 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_parse_state_changed):
* gst/gstmessage.h:
don't use "new", it's a C++ keyword
2005-10-08 Wim Taymans <wim@fluendo.com> 2005-10-08 Wim Taymans <wim@fluendo.com>
* gst/gstbin.c: (is_eos), (update_degree), (gst_bin_query): * gst/gstbin.c: (is_eos), (update_degree), (gst_bin_query):
@ -11,7 +18,7 @@
* gst/gstelementfactory.c: * gst/gstelementfactory.c:
* gst/gstevent.c: * gst/gstevent.c:
* gst/gsttaglist.c: * gst/gsttaglist.c:
more docs more docs
2005-10-08 Wim Taymans <wim@fluendo.com> 2005-10-08 Wim Taymans <wim@fluendo.com>
@ -22,7 +29,7 @@
in a threadsafe way. in a threadsafe way.
Get base time in a threadsafe way too. Get base time in a threadsafe way too.
Fix confusing debug in the change_state function. Fix confusing debug in the change_state function.
Various other mall cleanups. Various other small cleanups.
* gst/gstelement.c: (gst_element_post_message): * gst/gstelement.c: (gst_element_post_message):
Fix very verbose bus posting code. Fix very verbose bus posting code.

View file

@ -381,13 +381,13 @@ gst_message_new_tag (GstObject * src, GstTagList * tag_list)
/** /**
* gst_message_new_state_changed: * gst_message_new_state_changed:
* @src: The object originating the message. * @src: the object originating the message
* @old: The previous state. * @oldstate: the previous state
* @new: The new (current) state. * @newstate: the new (current) state
* @pending: The pending (target) state. * @pending: the pending (target) state
* *
* Create a state change message. This message is posted whenever an element changed * Create a state change message. This message is posted whenever an element
* its state. * changed its state.
* *
* Returns: The new state change message. * Returns: The new state change message.
* *
@ -395,14 +395,14 @@ gst_message_new_tag (GstObject * src, GstTagList * tag_list)
*/ */
GstMessage * GstMessage *
gst_message_new_state_changed (GstObject * src, gst_message_new_state_changed (GstObject * src,
GstState old, GstState new, GstState pending) GstState oldstate, GstState newstate, GstState pending)
{ {
GstMessage *message; GstMessage *message;
message = gst_message_new_custom (GST_MESSAGE_STATE_CHANGED, src, message = gst_message_new_custom (GST_MESSAGE_STATE_CHANGED, src,
gst_structure_new ("GstMessageState", gst_structure_new ("GstMessageState",
"old-state", GST_TYPE_STATE, (gint) old, "old-state", GST_TYPE_STATE, (gint) oldstate,
"new-state", GST_TYPE_STATE, (gint) new, "new-state", GST_TYPE_STATE, (gint) newstate,
"pending-state", GST_TYPE_STATE, (gint) pending, NULL)); "pending-state", GST_TYPE_STATE, (gint) pending, NULL));
return message; return message;
@ -624,18 +624,18 @@ gst_message_parse_tag (GstMessage * message, GstTagList ** tag_list)
/** /**
* gst_message_parse_state_changed: * gst_message_parse_state_changed:
* @message: A valid #GstMessage of type GST_MESSAGE_STATE_CHANGED. * @message: a valid #GstMessage of type GST_MESSAGE_STATE_CHANGED
* @old: The previous state. * @oldstate: the previous state
* @new: The new (current) state. * @newstate: the new (current) state
* @pending: The pending (target) state. * @pending: the pending (target) state
* *
* Extracts the old and new states from the GstMessage. * Extracts the old and new states from the GstMessage.
* *
* MT safe. * MT safe.
*/ */
void void
gst_message_parse_state_changed (GstMessage * message, GstState * old, gst_message_parse_state_changed (GstMessage * message, GstState * oldstate,
GstState * new, GstState * pending) GstState * newstate, GstState * pending)
{ {
g_return_if_fail (GST_IS_MESSAGE (message)); g_return_if_fail (GST_IS_MESSAGE (message));
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STATE_CHANGED); g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STATE_CHANGED);

View file

@ -41,8 +41,8 @@ typedef struct _GstMessageClass GstMessageClass;
* @GST_MESSAGE_CLOCK_PROVIDE: an element notifies it capability of providing * @GST_MESSAGE_CLOCK_PROVIDE: an element notifies it capability of providing
* a clock. * a clock.
* @GST_MESSAGE_CLOCK_LOST: The current clock as selected by the pipeline became * @GST_MESSAGE_CLOCK_LOST: The current clock as selected by the pipeline became
* unusable. The pipeline will select a new clock on the * unusable. The pipeline will select a new clock on
* next PLAYING state change. * the next PLAYING state change.
* @GST_MESSAGE_NEW_CLOCK: a new clock was selected in the pipeline * @GST_MESSAGE_NEW_CLOCK: a new clock was selected in the pipeline
* @GST_MESSAGE_STRUCTURE_CHANGE: the structure of the pipeline changed. * @GST_MESSAGE_STRUCTURE_CHANGE: the structure of the pipeline changed.
* @GST_MESSAGE_STREAM_STATUS: status about a stream, emitted when it starts, * @GST_MESSAGE_STREAM_STATUS: status about a stream, emitted when it starts,
@ -188,8 +188,8 @@ GstMessage * gst_message_new_eos (GstObject * src);
GstMessage * gst_message_new_error (GstObject * src, GError * error, gchar * debug); GstMessage * gst_message_new_error (GstObject * src, GError * error, gchar * debug);
GstMessage * gst_message_new_warning (GstObject * src, GError * error, gchar * debug); GstMessage * gst_message_new_warning (GstObject * src, GError * error, gchar * debug);
GstMessage * gst_message_new_tag (GstObject * src, GstTagList * tag_list); GstMessage * gst_message_new_tag (GstObject * src, GstTagList * tag_list);
GstMessage * gst_message_new_state_changed (GstObject * src, GstState old, GstMessage * gst_message_new_state_changed (GstObject * src, GstState oldstate,
GstState new, GstState pending); GstState newstate, GstState pending);
GstMessage * gst_message_new_clock_provide (GstObject * src, GstClock *clock, gboolean ready); GstMessage * gst_message_new_clock_provide (GstObject * src, GstClock *clock, gboolean ready);
GstMessage * gst_message_new_clock_lost (GstObject * src, GstClock *clock); GstMessage * gst_message_new_clock_lost (GstObject * src, GstClock *clock);
GstMessage * gst_message_new_new_clock (GstObject * src, GstClock *clock); GstMessage * gst_message_new_new_clock (GstObject * src, GstClock *clock);
@ -204,8 +204,8 @@ GstMessage * gst_message_new_custom (GstMessageType type,
void gst_message_parse_error (GstMessage *message, GError **gerror, gchar **debug); void gst_message_parse_error (GstMessage *message, GError **gerror, gchar **debug);
void gst_message_parse_warning (GstMessage *message, GError **gerror, gchar **debug); void gst_message_parse_warning (GstMessage *message, GError **gerror, gchar **debug);
void gst_message_parse_tag (GstMessage *message, GstTagList **tag_list); void gst_message_parse_tag (GstMessage *message, GstTagList **tag_list);
void gst_message_parse_state_changed (GstMessage *message, GstState *old, void gst_message_parse_state_changed (GstMessage *message, GstState *oldstate,
GstState *new, GstState *pending); GstState *newstate, GstState *pending);
void gst_message_parse_clock_provide (GstMessage *message, GstClock **clock, gboolean *ready); void gst_message_parse_clock_provide (GstMessage *message, GstClock **clock, gboolean *ready);
void gst_message_parse_clock_lost (GstMessage *message, GstClock **clock); void gst_message_parse_clock_lost (GstMessage *message, GstClock **clock);
void gst_message_parse_new_clock (GstMessage *message, GstClock **clock); void gst_message_parse_new_clock (GstMessage *message, GstClock **clock);