2005-03-21 17:34:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
|
|
|
* gstmessage.c: GstMessage subsystem
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2005-10-15 16:01:57 +00:00
|
|
|
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstmessage
|
2005-10-15 16:01:57 +00:00
|
|
|
* @short_description: Lightweight objects to signal the application of
|
|
|
|
* pipeline events
|
2005-11-09 16:00:05 +00:00
|
|
|
* @see_also: #GstBus, #GstMiniObject, #GstElement
|
2005-08-27 10:57:00 +00:00
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Messages are implemented as a subclass of #GstMiniObject with a generic
|
2005-08-27 10:57:00 +00:00
|
|
|
* #GstStructure as the content. This allows for writing custom messages without
|
|
|
|
* requiring an API change while allowing a wide range of different types
|
|
|
|
* of messages.
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Messages are posted by objects in the pipeline and are passed to the
|
|
|
|
* application using the #GstBus.
|
2005-11-09 16:00:05 +00:00
|
|
|
|
|
|
|
* The basic use pattern of posting a message on a #GstBus is as follows:
|
|
|
|
*
|
|
|
|
* <example>
|
|
|
|
* <title>Posting a #GstMessage</title>
|
|
|
|
* <programlisting>
|
|
|
|
* gst_bus_post (bus, gst_message_new_eos());
|
|
|
|
* </programlisting>
|
|
|
|
* </example>
|
|
|
|
*
|
|
|
|
* A #GstElement usually posts messages on the bus provided by the parent
|
|
|
|
* container using gst_element_post_message().
|
|
|
|
*
|
|
|
|
* Last reviewed on 2005-11-09 (0.9.4)
|
2005-08-27 10:57:00 +00:00
|
|
|
*/
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "gst_private.h"
|
2006-05-04 15:20:14 +00:00
|
|
|
#include <string.h> /* memcpy */
|
2005-07-12 16:28:36 +00:00
|
|
|
#include "gsterror.h"
|
2005-09-29 01:57:00 +00:00
|
|
|
#include "gstenumtypes.h"
|
2005-03-21 17:34:02 +00:00
|
|
|
#include "gstinfo.h"
|
|
|
|
#include "gstmessage.h"
|
2005-09-07 13:22:16 +00:00
|
|
|
#include "gsttaglist.h"
|
2005-04-24 22:49:45 +00:00
|
|
|
#include "gstutils.h"
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
#include "gstquark.h"
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
|
2009-12-04 21:32:38 +00:00
|
|
|
static GType _gst_message_type = 0;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GstMessage message;
|
|
|
|
|
|
|
|
GstStructure *structure;
|
|
|
|
} GstMessageImpl;
|
|
|
|
|
|
|
|
#define GST_MESSAGE_STRUCTURE(m) (((GstMessageImpl *)(m))->structure)
|
|
|
|
|
2005-09-28 16:43:20 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2006-06-12 09:28:35 +00:00
|
|
|
const gint type;
|
|
|
|
const gchar *name;
|
2005-09-28 16:43:20 +00:00
|
|
|
GQuark quark;
|
|
|
|
} GstMessageQuarks;
|
|
|
|
|
|
|
|
static GstMessageQuarks message_quarks[] = {
|
|
|
|
{GST_MESSAGE_UNKNOWN, "unknown", 0},
|
|
|
|
{GST_MESSAGE_EOS, "eos", 0},
|
|
|
|
{GST_MESSAGE_ERROR, "error", 0},
|
|
|
|
{GST_MESSAGE_WARNING, "warning", 0},
|
|
|
|
{GST_MESSAGE_INFO, "info", 0},
|
|
|
|
{GST_MESSAGE_TAG, "tag", 0},
|
|
|
|
{GST_MESSAGE_BUFFERING, "buffering", 0},
|
|
|
|
{GST_MESSAGE_STATE_CHANGED, "state-changed", 0},
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
{GST_MESSAGE_STATE_DIRTY, "state-dirty", 0},
|
2005-09-28 16:43:20 +00:00
|
|
|
{GST_MESSAGE_STEP_DONE, "step-done", 0},
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
{GST_MESSAGE_CLOCK_PROVIDE, "clock-provide", 0},
|
|
|
|
{GST_MESSAGE_CLOCK_LOST, "clock-lost", 0},
|
2005-09-28 16:43:20 +00:00
|
|
|
{GST_MESSAGE_NEW_CLOCK, "new-clock", 0},
|
|
|
|
{GST_MESSAGE_STRUCTURE_CHANGE, "structure-change", 0},
|
|
|
|
{GST_MESSAGE_STREAM_STATUS, "stream-status", 0},
|
|
|
|
{GST_MESSAGE_APPLICATION, "application", 0},
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
{GST_MESSAGE_ELEMENT, "element", 0},
|
2005-09-28 16:43:20 +00:00
|
|
|
{GST_MESSAGE_SEGMENT_START, "segment-start", 0},
|
|
|
|
{GST_MESSAGE_SEGMENT_DONE, "segment-done", 0},
|
2005-10-18 13:19:16 +00:00
|
|
|
{GST_MESSAGE_DURATION, "duration", 0},
|
2007-02-02 11:48:48 +00:00
|
|
|
{GST_MESSAGE_LATENCY, "latency", 0},
|
2007-03-19 09:55:02 +00:00
|
|
|
{GST_MESSAGE_ASYNC_START, "async-start", 0},
|
|
|
|
{GST_MESSAGE_ASYNC_DONE, "async-done", 0},
|
2009-02-18 14:31:55 +00:00
|
|
|
{GST_MESSAGE_REQUEST_STATE, "request-state", 0},
|
2009-06-10 13:48:35 +00:00
|
|
|
{GST_MESSAGE_STEP_START, "step-start", 0},
|
2010-03-17 18:16:42 +00:00
|
|
|
{GST_MESSAGE_QOS, "qos", 0},
|
2011-01-06 14:58:47 +00:00
|
|
|
{GST_MESSAGE_PROGRESS, "progress", 0},
|
2005-09-28 16:43:20 +00:00
|
|
|
{0, NULL, 0}
|
|
|
|
};
|
|
|
|
|
2009-12-04 21:32:38 +00:00
|
|
|
void
|
|
|
|
_gst_message_initialize (void)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
GST_CAT_INFO (GST_CAT_GST_INIT, "init messages");
|
|
|
|
|
|
|
|
/* the GstMiniObject types need to be class_ref'd once before it can be
|
|
|
|
* done from multiple threads;
|
|
|
|
* see http://bugzilla.gnome.org/show_bug.cgi?id=304551 */
|
2009-12-04 22:52:32 +00:00
|
|
|
gst_message_get_type ();
|
2009-12-04 21:32:38 +00:00
|
|
|
|
|
|
|
for (i = 0; message_quarks[i].name; i++) {
|
|
|
|
message_quarks[i].quark =
|
|
|
|
g_quark_from_static_string (message_quarks[i].name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-08 14:48:17 +00:00
|
|
|
/**
|
|
|
|
* gst_message_type_get_name:
|
|
|
|
* @type: the message type
|
|
|
|
*
|
|
|
|
* Get a printable name for the given message type. Do not modify or free.
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Returns: a reference to the static name of the message.
|
2005-10-08 14:48:17 +00:00
|
|
|
*/
|
2005-09-28 16:43:20 +00:00
|
|
|
const gchar *
|
|
|
|
gst_message_type_get_name (GstMessageType type)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for (i = 0; message_quarks[i].name; i++) {
|
|
|
|
if (type == message_quarks[i].type)
|
|
|
|
return message_quarks[i].name;
|
|
|
|
}
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
|
2005-10-08 14:48:17 +00:00
|
|
|
/**
|
|
|
|
* gst_message_type_to_quark:
|
|
|
|
* @type: the message type
|
|
|
|
*
|
|
|
|
* Get the unique quark for the given message type.
|
|
|
|
*
|
|
|
|
* Returns: the quark associated with the message type
|
|
|
|
*/
|
2005-09-28 16:43:20 +00:00
|
|
|
GQuark
|
|
|
|
gst_message_type_to_quark (GstMessageType type)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for (i = 0; message_quarks[i].name; i++) {
|
|
|
|
if (type == message_quarks[i].type)
|
|
|
|
return message_quarks[i].quark;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-04 21:32:38 +00:00
|
|
|
GType
|
|
|
|
gst_message_get_type (void)
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
{
|
2009-12-04 21:32:38 +00:00
|
|
|
if (G_UNLIKELY (_gst_message_type == 0)) {
|
|
|
|
_gst_message_type = gst_mini_object_register ("GstMessage");
|
|
|
|
}
|
|
|
|
return _gst_message_type;
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
2009-12-04 21:32:38 +00:00
|
|
|
_gst_message_free (GstMessage * message)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
g_return_if_fail (message != NULL);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-10-17 18:09:32 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_MESSAGE, "finalize message %p", message);
|
2005-05-19 16:26:50 +00:00
|
|
|
|
2009-10-23 17:13:52 +00:00
|
|
|
if (GST_MESSAGE_SRC (message)) {
|
|
|
|
gst_object_unref (GST_MESSAGE_SRC (message));
|
|
|
|
GST_MESSAGE_SRC (message) = NULL;
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (message->lock) {
|
|
|
|
GST_MESSAGE_LOCK (message);
|
|
|
|
GST_MESSAGE_SIGNAL (message);
|
|
|
|
GST_MESSAGE_UNLOCK (message);
|
|
|
|
}
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
if (structure) {
|
|
|
|
gst_structure_set_parent_refcount (structure, NULL);
|
|
|
|
gst_structure_free (structure);
|
2005-04-21 09:33:31 +00:00
|
|
|
}
|
2008-02-12 12:04:43 +00:00
|
|
|
|
2011-02-23 15:48:00 +00:00
|
|
|
g_slice_free1 (GST_MINI_OBJECT_SIZE (message), message);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
static GstMessage *
|
|
|
|
_gst_message_copy (GstMessage * message)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstMessageImpl *copy;
|
|
|
|
GstStructure *structure;
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
|
2005-10-17 18:09:32 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_MESSAGE, "copy message %p", message);
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
copy = g_slice_new0 (GstMessageImpl);
|
2009-12-04 21:32:38 +00:00
|
|
|
|
|
|
|
gst_mini_object_init (GST_MINI_OBJECT_CAST (copy),
|
2011-05-10 11:34:10 +00:00
|
|
|
_gst_message_type, sizeof (GstMessageImpl));
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
copy->message.mini_object.copy =
|
|
|
|
(GstMiniObjectCopyFunction) _gst_message_copy;
|
|
|
|
copy->message.mini_object.free =
|
|
|
|
(GstMiniObjectFreeFunction) _gst_message_free;
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
|
2009-10-23 17:13:52 +00:00
|
|
|
GST_MESSAGE_TYPE (copy) = GST_MESSAGE_TYPE (message);
|
|
|
|
GST_MESSAGE_TIMESTAMP (copy) = GST_MESSAGE_TIMESTAMP (message);
|
2008-11-04 12:22:53 +00:00
|
|
|
GST_MESSAGE_SEQNUM (copy) = GST_MESSAGE_SEQNUM (message);
|
2009-10-23 17:13:52 +00:00
|
|
|
if (GST_MESSAGE_SRC (message)) {
|
|
|
|
GST_MESSAGE_SRC (copy) = gst_object_ref (GST_MESSAGE_SRC (message));
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
}
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
GST_MESSAGE_GET_LOCK (copy) = GST_MESSAGE_GET_LOCK (message);
|
|
|
|
GST_MESSAGE_COND (copy) = GST_MESSAGE_COND (message);
|
|
|
|
|
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
if (structure) {
|
|
|
|
copy->structure = gst_structure_copy (structure);
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
gst_structure_set_parent_refcount (copy->structure,
|
2011-05-10 11:34:10 +00:00
|
|
|
©->message.mini_object.refcount);
|
check/Makefile.am: remove GstData checks
Original commit message from CVS:
* check/Makefile.am: remove GstData checks
* check/gst-libs/gdp.c: (START_TEST): fix for API changes
* gst/Makefile.am: add miniobject, remove data
* gst/gst.h: add miniobject, remove data
* gst/gstdata.c: remove
* gst/gstdata.h: remove
* gst/gstdata_private.h: remove
* gst/gsttypes.h: remove GstEvent and GstMessage
* gst/gstelement.c: (gst_element_post_message): fix for API changes
* gst/gstmarshal.list: change BOXED -> OBJECT
Implement GstMiniObject.
* gst/gstminiobject.c:
* gst/gstminiobject.h:
Modify to be subclasses of GstMiniObject.
* gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
(gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
(gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
(gst_subbuffer_get_type), (gst_subbuffer_init),
(gst_buffer_create_sub), (gst_buffer_is_span_fast),
(gst_buffer_span):
* gst/gstbuffer.h:
* gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
(gst_event_class_init), (gst_event_init), (gst_event_finalize),
(_gst_event_copy), (gst_event_new):
* gst/gstevent.h:
* gst/gstmessage.c: (_gst_message_initialize),
(gst_message_get_type), (gst_message_class_init),
(gst_message_init), (gst_message_finalize), (_gst_message_copy),
(gst_message_new), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_application):
* gst/gstmessage.h:
* gst/gstprobe.c: (gst_probe_perform),
(gst_probe_dispatcher_dispatch):
* gst/gstprobe.h:
* gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
(gst_query_class_init), (gst_query_finalize), (gst_query_init),
(_gst_query_copy), (gst_query_new):
Update elements for GstData -> GstMiniObject changes
* gst/gstquery.h:
* gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
(gst_queue_chain), (gst_queue_loop):
* gst/elements/gstbufferstore.c:
(gst_buffer_store_add_buffer_func),
(gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
* gst/elements/gstfakesink.c: (gst_fakesink_class_init),
(gst_fakesink_render):
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
* gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
(gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
(gst_mmap_buffer_finalize), (gst_filesrc_map_region),
(gst_filesrc_create_read):
* gst/elements/gstidentity.c: (gst_identity_class_init):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_src_event), (free_entry_buffers),
(gst_type_find_element_handle_event):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_header_from_buffer):
* libs/gst/dataprotocol/dataprotocol.h:
* libs/gst/dataprotocol/dp-private.h:
2005-05-16 20:21:55 +00:00
|
|
|
}
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
return GST_MESSAGE_CAST (copy);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_custom:
|
|
|
|
* @type: The #GstMessageType to distinguish messages
|
|
|
|
* @src: The object originating the message.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @structure: (transfer full): the structure for the message. The message
|
|
|
|
* will take ownership of the structure.
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
*
|
|
|
|
* Create a new custom-typed message. This can be used for anything not
|
|
|
|
* handled by other message-specific functions to pass a message to the
|
|
|
|
* app. The structure field can be NULL.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new message.
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_custom (GstMessageType type, GstObject * src,
|
|
|
|
GstStructure * structure)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstMessageImpl *message;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
message = g_slice_new0 (GstMessageImpl);
|
2009-12-04 21:32:38 +00:00
|
|
|
|
|
|
|
gst_mini_object_init (GST_MINI_OBJECT_CAST (message),
|
2011-05-10 11:34:10 +00:00
|
|
|
_gst_message_type, sizeof (GstMessageImpl));
|
2009-12-04 21:32:38 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
message->message.mini_object.copy =
|
|
|
|
(GstMiniObjectCopyFunction) _gst_message_copy;
|
|
|
|
message->message.mini_object.free =
|
|
|
|
(GstMiniObjectFreeFunction) _gst_message_free;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
gst/base/gstbasesink.c: Speed up current position calculation.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_get_position),
(gst_base_sink_query):
Speed up current position calculation.
* gst/base/gstbasesrc.c: (gst_base_src_query),
(gst_base_src_default_newsegment):
Correctly set stream position in newsegment.
* gst/gstbin.c: (gst_bin_add_func), (add_to_queue),
(update_degree), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free):
* gst/gstmessage.c: (gst_message_new_custom):
Clean up debugging info
* gst/gstqueue.c: (gst_queue_link_src), (gst_queue_chain),
(gst_queue_loop), (gst_queue_handle_src_query):
Pause task faster.
2005-10-20 11:48:53 +00:00
|
|
|
GST_CAT_LOG (GST_CAT_MESSAGE, "source %s: creating new message %p %s",
|
|
|
|
(src ? GST_OBJECT_NAME (src) : "NULL"), message,
|
2005-09-29 18:25:50 +00:00
|
|
|
gst_message_type_get_name (type));
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
GST_MESSAGE_TYPE (message) = type;
|
gst/base/gstbasesink.c: Speed up current position calculation.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_get_position),
(gst_base_sink_query):
Speed up current position calculation.
* gst/base/gstbasesrc.c: (gst_base_src_query),
(gst_base_src_default_newsegment):
Correctly set stream position in newsegment.
* gst/gstbin.c: (gst_bin_add_func), (add_to_queue),
(update_degree), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free):
* gst/gstmessage.c: (gst_message_new_custom):
Clean up debugging info
* gst/gstqueue.c: (gst_queue_link_src), (gst_queue_chain),
(gst_queue_loop), (gst_queue_handle_src_query):
Pause task faster.
2005-10-20 11:48:53 +00:00
|
|
|
if (src)
|
|
|
|
gst_object_ref (src);
|
2011-05-10 11:34:10 +00:00
|
|
|
GST_MESSAGE_SRC (message) = src;
|
|
|
|
GST_MESSAGE_TIMESTAMP (message) = GST_CLOCK_TIME_NONE;
|
|
|
|
GST_MESSAGE_SEQNUM (message) = gst_util_seqnum_next ();
|
gst/base/gstbasesink.c: Speed up current position calculation.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_get_position),
(gst_base_sink_query):
Speed up current position calculation.
* gst/base/gstbasesrc.c: (gst_base_src_query),
(gst_base_src_default_newsegment):
Correctly set stream position in newsegment.
* gst/gstbin.c: (gst_bin_add_func), (add_to_queue),
(update_degree), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free):
* gst/gstmessage.c: (gst_message_new_custom):
Clean up debugging info
* gst/gstqueue.c: (gst_queue_link_src), (gst_queue_chain),
(gst_queue_loop), (gst_queue_handle_src_query):
Pause task faster.
2005-10-20 11:48:53 +00:00
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
if (structure) {
|
|
|
|
gst_structure_set_parent_refcount (structure,
|
2011-05-10 11:34:10 +00:00
|
|
|
&message->message.mini_object.refcount);
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
}
|
|
|
|
message->structure = structure;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
return GST_MESSAGE_CAST (message);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
2008-11-04 12:22:53 +00:00
|
|
|
/**
|
|
|
|
* gst_message_get_seqnum:
|
|
|
|
* @message: A #GstMessage.
|
|
|
|
*
|
|
|
|
* Retrieve the sequence number of a message.
|
|
|
|
*
|
|
|
|
* Messages have ever-incrementing sequence numbers, which may also be set
|
|
|
|
* explicitly via gst_message_set_seqnum(). Sequence numbers are typically used
|
|
|
|
* to indicate that a message corresponds to some other set of messages or
|
|
|
|
* events, for example a SEGMENT_DONE message corresponding to a SEEK event. It
|
|
|
|
* is considered good practice to make this correspondence when possible, though
|
|
|
|
* it is not required.
|
|
|
|
*
|
|
|
|
* Note that events and messages share the same sequence number incrementor;
|
|
|
|
* two events or messages will never not have the same sequence number unless
|
|
|
|
* that correspondence was made explicitly.
|
|
|
|
*
|
|
|
|
* Returns: The message's sequence number.
|
|
|
|
*
|
|
|
|
* MT safe.
|
2009-05-22 08:33:02 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.22
|
2008-11-04 12:22:53 +00:00
|
|
|
*/
|
|
|
|
guint32
|
|
|
|
gst_message_get_seqnum (GstMessage * message)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_MESSAGE (message), -1);
|
|
|
|
|
|
|
|
return GST_MESSAGE_SEQNUM (message);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_set_seqnum:
|
|
|
|
* @message: A #GstMessage.
|
|
|
|
* @seqnum: A sequence number.
|
|
|
|
*
|
|
|
|
* Set the sequence number of a message.
|
|
|
|
*
|
|
|
|
* This function might be called by the creator of a message to indicate that
|
|
|
|
* the message relates to other messages or events. See gst_message_get_seqnum()
|
|
|
|
* for more information.
|
|
|
|
*
|
|
|
|
* MT safe.
|
2009-05-22 08:33:02 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.22
|
2008-11-04 12:22:53 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_set_seqnum (GstMessage * message, guint32 seqnum)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
|
|
|
|
|
|
|
GST_MESSAGE_SEQNUM (message) = seqnum;
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_eos:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2005-07-20 18:02:13 +00:00
|
|
|
* Create a new eos message. This message is generated and posted in
|
|
|
|
* the sink elements of a GstBin. The bin will only forward the EOS
|
|
|
|
* message to the application if all sinks have posted an EOS message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new eos message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_eos (GstObject * src)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
message = gst_message_new_custom (GST_MESSAGE_EOS, src, NULL);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_error:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
|
|
|
* @error: (transfer none): The GError for this message.
|
2008-07-24 17:38:43 +00:00
|
|
|
* @debug: A debugging string.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2005-07-12 16:28:36 +00:00
|
|
|
* Create a new error message. The message will copy @error and
|
2005-07-20 18:02:13 +00:00
|
|
|
* @debug. This message is posted by element when a fatal event
|
2006-09-15 08:39:56 +00:00
|
|
|
* occured. The pipeline will probably (partially) stop. The application
|
|
|
|
* receiving this message should stop the pipeline.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new error message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
2008-05-17 13:54:52 +00:00
|
|
|
gst_message_new_error (GstObject * src, GError * error, const gchar * debug)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_ERROR),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (GERROR), GST_TYPE_G_ERROR, error,
|
|
|
|
GST_QUARK (DEBUG), G_TYPE_STRING, debug, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_ERROR, src, structure);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_warning:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
|
|
|
* @error: (transfer none): The GError for this message.
|
2008-07-24 17:38:43 +00:00
|
|
|
* @debug: A debugging string.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2005-07-12 16:28:36 +00:00
|
|
|
* Create a new warning message. The message will make copies of @error and
|
2005-03-21 17:34:02 +00:00
|
|
|
* @debug.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new warning message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
2008-05-17 13:54:52 +00:00
|
|
|
gst_message_new_warning (GstObject * src, GError * error, const gchar * debug)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_WARNING),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (GERROR), GST_TYPE_G_ERROR, error,
|
|
|
|
GST_QUARK (DEBUG), G_TYPE_STRING, debug, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_WARNING, src, structure);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2007-02-28 16:40:02 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_info:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
|
|
|
* @error: (transfer none): The GError for this message.
|
2008-07-24 17:38:43 +00:00
|
|
|
* @debug: A debugging string.
|
2007-02-28 16:40:02 +00:00
|
|
|
*
|
|
|
|
* Create a new info message. The message will make copies of @error and
|
|
|
|
* @debug.
|
|
|
|
*
|
|
|
|
* MT safe.
|
2009-05-22 08:33:02 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new info message.
|
2009-05-22 09:24:22 +00:00
|
|
|
*
|
2009-05-22 08:33:02 +00:00
|
|
|
* Since: 0.10.12
|
2007-02-28 16:40:02 +00:00
|
|
|
*/
|
|
|
|
GstMessage *
|
2008-05-17 13:54:52 +00:00
|
|
|
gst_message_new_info (GstObject * src, GError * error, const gchar * debug)
|
2007-02-28 16:40:02 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
2007-02-28 16:40:02 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_INFO),
|
|
|
|
GST_QUARK (GERROR), GST_TYPE_G_ERROR, error,
|
|
|
|
GST_QUARK (DEBUG), G_TYPE_STRING, debug, NULL);
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
message = gst_message_new_custom (GST_MESSAGE_INFO, src, structure);
|
2007-02-28 16:40:02 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_tag:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
|
|
|
* @tag_list: (transfer full): the tag list for the message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* Create a new tag message. The message will take ownership of the tag list.
|
2005-07-20 18:02:13 +00:00
|
|
|
* The message is posted by elements that discovered a new taglist.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new tag message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_tag (GstObject * src, GstTagList * tag_list)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
|
2005-04-21 09:33:31 +00:00
|
|
|
g_return_val_if_fail (GST_IS_STRUCTURE (tag_list), NULL);
|
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
message =
|
|
|
|
gst_message_new_custom (GST_MESSAGE_TAG, src, (GstStructure *) tag_list);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2009-05-27 12:32:51 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_tag_full:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): the object originating the message.
|
|
|
|
* @pad: (transfer none): the originating pad for the tag.
|
|
|
|
* @tag_list: (transfer full): the tag list for the message.
|
2009-05-27 12:32:51 +00:00
|
|
|
*
|
|
|
|
* Create a new tag message. The message will take ownership of the tag list.
|
|
|
|
* The message is posted by elements that discovered a new taglist.
|
|
|
|
*
|
2009-06-19 13:10:30 +00:00
|
|
|
* MT safe.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new tag message.
|
2009-05-27 12:32:51 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_tag_full (GstObject * src, GstPad * pad, GstTagList * tag_list)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
GstStructure *s;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_STRUCTURE (tag_list), NULL);
|
|
|
|
g_return_val_if_fail (pad == NULL || GST_IS_PAD (pad), NULL);
|
|
|
|
|
|
|
|
s = (GstStructure *) tag_list;
|
|
|
|
if (pad)
|
|
|
|
gst_structure_set (s, "source-pad", GST_TYPE_PAD, pad, NULL);
|
|
|
|
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_TAG, src, s);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2006-09-15 08:39:56 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_buffering:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
2006-09-15 08:39:56 +00:00
|
|
|
* @percent: The buffering percent
|
|
|
|
*
|
|
|
|
* Create a new buffering message. This message can be posted by an element that
|
|
|
|
* needs to buffer data before it can continue processing. @percent should be a
|
|
|
|
* value between 0 and 100. A value of 100 means that the buffering completed.
|
|
|
|
*
|
2006-09-22 15:29:23 +00:00
|
|
|
* When @percent is < 100 the application should PAUSE a PLAYING pipeline. When
|
|
|
|
* @percent is 100, the application can set the pipeline (back) to PLAYING.
|
|
|
|
* The application must be prepared to receive BUFFERING messages in the
|
|
|
|
* PREROLLING state and may only set the pipeline to PLAYING after receiving a
|
|
|
|
* message with @percent set to 100, which can happen after the pipeline
|
|
|
|
* completed prerolling.
|
|
|
|
*
|
2006-09-15 08:39:56 +00:00
|
|
|
* MT safe.
|
2009-05-22 08:33:02 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new buffering message.
|
2009-05-22 09:24:22 +00:00
|
|
|
*
|
2009-05-22 08:33:02 +00:00
|
|
|
* Since: 0.10.11
|
2006-09-15 08:39:56 +00:00
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_buffering (GstObject * src, gint percent)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
2006-09-15 08:39:56 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (percent >= 0 && percent <= 100, NULL);
|
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_BUFFERING),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (BUFFER_PERCENT), G_TYPE_INT, percent,
|
|
|
|
GST_QUARK (BUFFERING_MODE), GST_TYPE_BUFFERING_MODE, GST_BUFFERING_STREAM,
|
|
|
|
GST_QUARK (AVG_IN_RATE), G_TYPE_INT, -1,
|
|
|
|
GST_QUARK (AVG_OUT_RATE), G_TYPE_INT, -1,
|
2008-04-16 18:38:16 +00:00
|
|
|
GST_QUARK (BUFFERING_LEFT), G_TYPE_INT64, G_GINT64_CONSTANT (-1),
|
|
|
|
GST_QUARK (ESTIMATED_TOTAL), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL);
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
message = gst_message_new_custom (GST_MESSAGE_BUFFERING, src, structure);
|
2006-09-15 08:39:56 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
2005-10-08 14:48:17 +00:00
|
|
|
* gst_message_new_state_changed:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): the object originating the message
|
2005-10-09 17:53:33 +00:00
|
|
|
* @oldstate: the previous state
|
|
|
|
* @newstate: the new (current) state
|
|
|
|
* @pending: the pending (target) state
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2005-10-09 17:53:33 +00:00
|
|
|
* Create a state change message. This message is posted whenever an element
|
|
|
|
* changed its state.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new state change message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
gst_message_new_state_changed (GstObject * src,
|
2005-10-09 17:53:33 +00:00
|
|
|
GstState oldstate, GstState newstate, GstState pending)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_STATE),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (OLD_STATE), GST_TYPE_STATE, (gint) oldstate,
|
|
|
|
GST_QUARK (NEW_STATE), GST_TYPE_STATE, (gint) newstate,
|
|
|
|
GST_QUARK (PENDING_STATE), GST_TYPE_STATE, (gint) pending, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_STATE_CHANGED, src, structure);
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_state_dirty:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): the object originating the message
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
*
|
|
|
|
* Create a state dirty message. This message is posted whenever an element
|
|
|
|
* changed its state asynchronously and is used internally to update the
|
|
|
|
* states of container objects.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new state dirty message.
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_state_dirty (GstObject * src)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_STATE_DIRTY, src, NULL);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_clock_provide:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): the object originating the message.
|
|
|
|
* @clock: (transfer none): the clock it provides
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
* @ready: TRUE if the sender can provide a clock
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Create a clock provide message. This message is posted whenever an
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
* element is ready to provide a clock or lost its ability to provide
|
|
|
|
* a clock (maybe because it paused or became EOS).
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* This message is mainly used internally to manage the clock
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
* selection.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new provide clock message.
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
gst_message_new_clock_provide (GstObject * src, GstClock * clock,
|
|
|
|
gboolean ready)
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_CLOCK_PROVIDE),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (CLOCK), GST_TYPE_CLOCK, clock,
|
|
|
|
GST_QUARK (READY), G_TYPE_BOOLEAN, ready, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_CLOCK_PROVIDE, src, structure);
|
gst/: Make gst_caps_replace() work like other _replace() functions.
Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_basesink_base_init),
(gst_basesink_pad_getcaps), (gst_basesink_init),
(gst_basesink_chain_unlocked):
* gst/base/gsttypefindhelper.c: (helper_find_suggest),
(gst_type_find_helper):
* gst/elements/gsttypefindelement.c:
(gst_type_find_element_have_type), (gst_type_find_element_init),
(stop_typefinding), (gst_type_find_element_handle_event),
(find_suggest), (gst_type_find_element_chain),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_getrange), (do_typefind),
(gst_type_find_element_activate):
* gst/gstbuffer.c: (_gst_buffer_sub_free),
(gst_buffer_default_free), (gst_buffer_default_copy),
(gst_buffer_set_caps):
* gst/gstcaps.c: (gst_caps_ref), (gst_caps_unref),
(gst_caps_replace):
* gst/gstmessage.c: (gst_message_new),
(gst_message_new_state_changed):
* gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
(gst_pad_set_checkgetrange_function),
(gst_pad_link_prepare_filtered), (gst_pad_relink_filtered),
(gst_pad_set_caps), (gst_pad_check_pull_range),
(gst_pad_pull_range), (gst_static_pad_template_get_caps):
* gst/gstpad.h:
* gst/gsttypefind.c: (gst_type_find_register):
Make gst_caps_replace() work like other _replace() functions.
Use _caps_replace() where possible.
Make sure _message_new() initialises its field.
Add gst_static_pad_template_get_caps()
2005-04-20 09:10:42 +00:00
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_clock_lost:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): the object originating the message.
|
|
|
|
* @clock: (transfer none): the clock that was lost
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
*
|
|
|
|
* Create a clock lost message. This message is posted whenever the
|
|
|
|
* clock is not valid anymore.
|
|
|
|
*
|
|
|
|
* If this message is posted by the pipeline, the pipeline will
|
|
|
|
* select a new clock again when it goes to PLAYING. It might therefore
|
|
|
|
* be needed to set the pipeline to PAUSED and PLAYING again.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new clock lost message.
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_clock_lost (GstObject * src, GstClock * clock)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_CLOCK_LOST),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (CLOCK), GST_TYPE_CLOCK, clock, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_CLOCK_LOST, src, structure);
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_new_clock:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
|
|
|
* @clock: (transfer none): the new selected clock
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
*
|
|
|
|
* Create a new clock message. This message is posted whenever the
|
|
|
|
* pipeline selectes a new clock for the pipeline.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new new clock message.
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_new_clock (GstObject * src, GstClock * clock)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_NEW_CLOCK),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (CLOCK), GST_TYPE_CLOCK, clock, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_NEW_CLOCK, src, structure);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2008-10-06 15:31:49 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_structure_change:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
2008-10-06 15:31:49 +00:00
|
|
|
* @type: The change type.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @owner: (transfer none): The owner element of @src.
|
2008-10-06 15:31:49 +00:00
|
|
|
* @busy: Whether the structure change is busy.
|
|
|
|
*
|
|
|
|
* Create a new structure change message. This message is posted when the
|
|
|
|
* structure of a pipeline is in the process of being changed, for example
|
|
|
|
* when pads are linked or unlinked.
|
|
|
|
*
|
2009-09-02 16:54:06 +00:00
|
|
|
* @src should be the sinkpad that unlinked or linked.
|
2008-10-06 15:31:49 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new structure change message.
|
2008-10-06 15:31:49 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.22.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_structure_change (GstObject * src, GstStructureChangeType type,
|
|
|
|
GstElement * owner, gboolean busy)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_PAD (src), NULL);
|
2009-09-11 21:42:51 +00:00
|
|
|
/* g_return_val_if_fail (GST_PAD_DIRECTION (src) == GST_PAD_SINK, NULL); */
|
2008-10-06 15:31:49 +00:00
|
|
|
g_return_val_if_fail (GST_IS_ELEMENT (owner), NULL);
|
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_STRUCTURE_CHANGE),
|
2008-10-06 15:31:49 +00:00
|
|
|
GST_QUARK (TYPE), GST_TYPE_STRUCTURE_CHANGE_TYPE, type,
|
|
|
|
GST_QUARK (OWNER), GST_TYPE_ELEMENT, owner,
|
|
|
|
GST_QUARK (BUSY), G_TYPE_BOOLEAN, busy, NULL);
|
|
|
|
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_STRUCTURE_CHANGE, src,
|
|
|
|
structure);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
2005-07-20 18:02:13 +00:00
|
|
|
* gst_message_new_segment_start:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
2005-10-18 13:19:16 +00:00
|
|
|
* @format: The format of the position being played
|
|
|
|
* @position: The position of the segment being played
|
2005-07-20 18:02:13 +00:00
|
|
|
*
|
|
|
|
* Create a new segment message. This message is posted by elements that
|
|
|
|
* start playback of a segment as a result of a segment seek. This message
|
|
|
|
* is not received by the application but is used for maintenance reasons in
|
|
|
|
* container elements.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new segment start message.
|
2005-07-20 18:02:13 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
2005-10-18 13:19:16 +00:00
|
|
|
gst_message_new_segment_start (GstObject * src, GstFormat format,
|
|
|
|
gint64 position)
|
2005-07-20 18:02:13 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
2005-07-20 18:02:13 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_SEGMENT_START),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (POSITION), G_TYPE_INT64, position, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_SEGMENT_START, src, structure);
|
2005-07-20 18:02:13 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_segment_done:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): the object originating the message.
|
2005-10-18 13:19:16 +00:00
|
|
|
* @format: The format of the position being done
|
|
|
|
* @position: The position of the segment being done
|
2005-07-20 18:02:13 +00:00
|
|
|
*
|
|
|
|
* Create a new segment done message. This message is posted by elements that
|
|
|
|
* finish playback of a segment as a result of a segment seek. This message
|
|
|
|
* is received by the application after all elements that posted a segment_start
|
|
|
|
* have posted the segment_done.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new segment done message.
|
2005-07-20 18:02:13 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
2005-10-18 13:19:16 +00:00
|
|
|
gst_message_new_segment_done (GstObject * src, GstFormat format,
|
|
|
|
gint64 position)
|
2005-07-20 18:02:13 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
2005-07-20 18:02:13 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_SEGMENT_DONE),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (POSITION), G_TYPE_INT64, position, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_SEGMENT_DONE, src, structure);
|
2005-07-20 18:02:13 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2005-10-07 16:13:51 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_application:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): the object originating the message.
|
|
|
|
* @structure: (transfer full): the structure for the message. The message
|
|
|
|
* will take ownership of the structure.
|
2005-10-07 16:13:51 +00:00
|
|
|
*
|
|
|
|
* Create a new application-typed message. GStreamer will never create these
|
|
|
|
* messages; they are a gift from us to you. Enjoy.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new application message.
|
2005-10-08 14:48:17 +00:00
|
|
|
*
|
2005-10-07 16:13:51 +00:00
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_application (GstObject * src, GstStructure * structure)
|
|
|
|
{
|
|
|
|
return gst_message_new_custom (GST_MESSAGE_APPLICATION, src, structure);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_element:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
|
|
|
* @structure: (transfer full): The structure for the message. The message
|
|
|
|
* will take ownership of the structure.
|
2005-10-07 16:13:51 +00:00
|
|
|
*
|
|
|
|
* Create a new element-specific message. This is meant as a generic way of
|
|
|
|
* allowing one-way communication from an element to an application, for example
|
|
|
|
* "the firewire cable was unplugged". The format of the message should be
|
|
|
|
* documented in the element's documentation. The structure field can be NULL.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new element message.
|
2005-10-08 14:48:17 +00:00
|
|
|
*
|
2005-10-07 16:13:51 +00:00
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_element (GstObject * src, GstStructure * structure)
|
|
|
|
{
|
|
|
|
return gst_message_new_custom (GST_MESSAGE_ELEMENT, src, structure);
|
|
|
|
}
|
|
|
|
|
2005-10-18 13:19:16 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_duration:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
2005-10-18 13:19:16 +00:00
|
|
|
* @format: The format of the duration
|
|
|
|
* @duration: The new duration
|
|
|
|
*
|
|
|
|
* Create a new duration message. This message is posted by elements that
|
|
|
|
* know the duration of a stream in a specific format. This message
|
|
|
|
* is received by bins and is used to calculate the total duration of a
|
2005-11-21 10:41:03 +00:00
|
|
|
* pipeline. Elements may post a duration message with a duration of
|
|
|
|
* GST_CLOCK_TIME_NONE to indicate that the duration has changed and the
|
|
|
|
* cached duration should be discarded. The new duration can then be
|
|
|
|
* retrieved via a query.
|
2005-10-18 13:19:16 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new duration message.
|
2005-10-18 13:19:16 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_duration (GstObject * src, GstFormat format, gint64 duration)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GstStructure *structure;
|
2005-10-18 13:19:16 +00:00
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_DURATION),
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (DURATION), G_TYPE_INT64, duration, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_DURATION, src, structure);
|
2005-10-18 13:19:16 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2007-03-19 09:55:02 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_async_start:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
2007-03-19 09:55:02 +00:00
|
|
|
*
|
2011-06-08 11:40:32 +00:00
|
|
|
* This message is posted by elements when they start an ASYNC state change.
|
2007-03-19 09:55:02 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new async_start message.
|
2007-03-19 09:55:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
2011-06-08 11:40:32 +00:00
|
|
|
gst_message_new_async_start (GstObject * src)
|
2007-03-19 09:55:02 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
|
2011-06-08 11:40:32 +00:00
|
|
|
message = gst_message_new_custom (GST_MESSAGE_ASYNC_START, src, NULL);
|
2007-03-19 09:55:02 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_async_done:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
2011-06-08 15:25:43 +00:00
|
|
|
* @reset_time: if the running_time should be reset
|
2007-03-19 09:55:02 +00:00
|
|
|
*
|
2007-07-25 13:00:23 +00:00
|
|
|
* The message is posted when elements completed an ASYNC state change.
|
2011-06-08 15:25:43 +00:00
|
|
|
* @reset_time is set to TRUE when the element requests a new running_time
|
2011-06-08 11:40:32 +00:00
|
|
|
* before going to PLAYING.
|
2007-07-25 13:00:23 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new async_done message.
|
2007-03-19 09:55:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
2011-06-08 15:25:43 +00:00
|
|
|
gst_message_new_async_done (GstObject * src, gboolean reset_time)
|
2007-03-19 09:55:02 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
2011-06-08 11:40:32 +00:00
|
|
|
GstStructure *structure;
|
2007-03-19 09:55:02 +00:00
|
|
|
|
2011-06-08 11:40:32 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_ASYNC_DONE),
|
2011-06-08 15:25:43 +00:00
|
|
|
GST_QUARK (RESET_TIME), G_TYPE_BOOLEAN, reset_time, NULL);
|
2011-06-08 11:40:32 +00:00
|
|
|
message = gst_message_new_custom (GST_MESSAGE_ASYNC_DONE, src, structure);
|
2007-03-19 09:55:02 +00:00
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2007-02-02 11:48:48 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_latency:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): The object originating the message.
|
2007-02-02 11:48:48 +00:00
|
|
|
*
|
|
|
|
* This message can be posted by elements when their latency requirements have
|
|
|
|
* changed.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new latency message.
|
2007-02-02 11:48:48 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.12
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_latency (GstObject * src)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_LATENCY, src, NULL);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2009-02-18 14:31:55 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_request_state:
|
2010-12-07 18:35:04 +00:00
|
|
|
* @src: (transfer none): the object originating the message.
|
2009-02-18 14:31:55 +00:00
|
|
|
* @state: The new requested state
|
|
|
|
*
|
|
|
|
* This message can be posted by elements when they want to have their state
|
|
|
|
* changed. A typical use case would be an audio server that wants to pause the
|
|
|
|
* pipeline because a higher priority stream is being played.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new requst state message.
|
2009-02-18 14:31:55 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.23
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_request_state (GstObject * src, GstState state)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_REQUEST_STATE),
|
2009-02-18 14:31:55 +00:00
|
|
|
GST_QUARK (NEW_STATE), GST_TYPE_STATE, (gint) state, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_REQUEST_STATE, src, structure);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
|
|
|
* gst_message_get_structure:
|
|
|
|
* @message: The #GstMessage.
|
|
|
|
*
|
|
|
|
* Access the structure of the message.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer none): The structure of the message. The structure is
|
|
|
|
* still owned by the message, which means that you should not free it and
|
2005-04-21 09:33:31 +00:00
|
|
|
* that the pointer becomes invalid when you free the message.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
const GstStructure *
|
|
|
|
gst_message_get_structure (GstMessage * message)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_MESSAGE (message), NULL);
|
2005-04-21 09:33:31 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
return GST_MESSAGE_STRUCTURE (message);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_has_name:
|
|
|
|
* @message: The #GstMessage.
|
|
|
|
* @name: name to check
|
|
|
|
*
|
|
|
|
* Checks if @message has the given @name. This function is usually used to
|
|
|
|
* check the name of a custom message.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @name matches the name of the message structure.
|
|
|
|
*
|
|
|
|
* Since: 0.10.20
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_message_has_name (GstMessage * message, const gchar * name)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_MESSAGE (message), FALSE);
|
|
|
|
|
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
if (structure == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return gst_structure_has_name (structure, name);
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_tag:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_TAG.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @tag_list: (out callee-allocates): return location for the tag-list.
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* Extracts the tag list from the GstMessage. The tag list returned in the
|
|
|
|
* output argument is a copy; the caller must free it when done.
|
|
|
|
*
|
2010-04-07 18:30:49 +00:00
|
|
|
* Typical usage of this function might be:
|
|
|
|
* |[
|
|
|
|
* ...
|
|
|
|
* switch (GST_MESSAGE_TYPE (msg)) {
|
|
|
|
* case GST_MESSAGE_TAG: {
|
|
|
|
* GstTagList *tags = NULL;
|
|
|
|
*
|
|
|
|
* gst_message_parse_tag (msg, &tags);
|
|
|
|
* g_print ("Got tags from element %s\n", GST_OBJECT_NAME (msg->src));
|
|
|
|
* handle_tags (tags);
|
|
|
|
* gst_tag_list_free (tags);
|
|
|
|
* break;
|
|
|
|
* }
|
|
|
|
* ...
|
|
|
|
* }
|
|
|
|
* ...
|
|
|
|
* ]|
|
|
|
|
*
|
2005-03-21 17:34:02 +00:00
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_tag (GstMessage * message, GstTagList ** tag_list)
|
|
|
|
{
|
2009-05-27 12:32:51 +00:00
|
|
|
GstStructure *ret;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_TAG);
|
2009-05-27 12:32:51 +00:00
|
|
|
g_return_if_fail (tag_list != NULL);
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
ret = gst_structure_copy (GST_MESSAGE_STRUCTURE (message));
|
2009-05-27 12:32:51 +00:00
|
|
|
gst_structure_remove_field (ret, "source-pad");
|
|
|
|
|
|
|
|
*tag_list = (GstTagList *) ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_tag_full:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_TAG.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @pad: (out callee-allocates): location where the originating pad is stored,
|
|
|
|
* unref after usage
|
|
|
|
* @tag_list: (out callee-allocates): return location for the tag-list.
|
2009-05-27 12:32:51 +00:00
|
|
|
*
|
|
|
|
* Extracts the tag list from the GstMessage. The tag list returned in the
|
|
|
|
* output argument is a copy; the caller must free it when done.
|
|
|
|
*
|
|
|
|
* MT safe.
|
2009-06-19 13:10:30 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
2009-05-27 12:32:51 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_tag_full (GstMessage * message, GstPad ** pad,
|
|
|
|
GstTagList ** tag_list)
|
|
|
|
{
|
|
|
|
GstStructure *ret;
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_TAG);
|
2006-01-06 17:16:40 +00:00
|
|
|
g_return_if_fail (tag_list != NULL);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
ret = gst_structure_copy (GST_MESSAGE_STRUCTURE (message));
|
2009-05-27 12:32:51 +00:00
|
|
|
|
|
|
|
if (gst_structure_has_field (ret, "source-pad") && pad) {
|
|
|
|
const GValue *v;
|
|
|
|
|
|
|
|
v = gst_structure_get_value (ret, "source-pad");
|
|
|
|
if (v && G_VALUE_HOLDS (v, GST_TYPE_PAD))
|
|
|
|
*pad = g_value_dup_object (v);
|
|
|
|
else
|
|
|
|
*pad = NULL;
|
|
|
|
} else if (pad) {
|
|
|
|
*pad = NULL;
|
|
|
|
}
|
|
|
|
gst_structure_remove_field (ret, "source-pad");
|
|
|
|
|
|
|
|
*tag_list = (GstTagList *) ret;
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
2006-09-15 08:39:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_buffering:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_BUFFERING.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @percent: (out) (allow-none): Return location for the percent.
|
2006-09-15 08:39:56 +00:00
|
|
|
*
|
2006-09-22 15:29:23 +00:00
|
|
|
* Extracts the buffering percent from the GstMessage. see also
|
|
|
|
* gst_message_new_buffering().
|
2006-09-15 08:39:56 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2009-05-22 08:33:02 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.11
|
2006-09-15 08:39:56 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_buffering (GstMessage * message, gint * percent)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_BUFFERING);
|
2006-09-15 08:39:56 +00:00
|
|
|
|
|
|
|
if (percent)
|
2011-05-10 11:34:10 +00:00
|
|
|
*percent =
|
|
|
|
g_value_get_int (gst_structure_id_get_value (GST_MESSAGE_STRUCTURE
|
|
|
|
(message), GST_QUARK (BUFFER_PERCENT)));
|
2006-09-15 08:39:56 +00:00
|
|
|
}
|
2005-03-21 17:34:02 +00:00
|
|
|
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
/**
|
|
|
|
* gst_message_set_buffering_stats:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_BUFFERING.
|
|
|
|
* @mode: a buffering mode
|
|
|
|
* @avg_in: the average input rate
|
|
|
|
* @avg_out: the average output rate
|
|
|
|
* @buffering_left: amount of buffering time left in milliseconds
|
|
|
|
*
|
|
|
|
* Configures the buffering stats values in @message.
|
|
|
|
*
|
|
|
|
* Since: 0.10.20
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_set_buffering_stats (GstMessage * message, GstBufferingMode mode,
|
|
|
|
gint avg_in, gint avg_out, gint64 buffering_left)
|
|
|
|
{
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_BUFFERING);
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
gst_structure_id_set (GST_MESSAGE_STRUCTURE (message),
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
GST_QUARK (BUFFERING_MODE), GST_TYPE_BUFFERING_MODE, mode,
|
|
|
|
GST_QUARK (AVG_IN_RATE), G_TYPE_INT, avg_in,
|
|
|
|
GST_QUARK (AVG_OUT_RATE), G_TYPE_INT, avg_out,
|
|
|
|
GST_QUARK (BUFFERING_LEFT), G_TYPE_INT64, buffering_left, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_buffering_stats:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_BUFFERING.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @mode: (out) (allow-none): a buffering mode, or NULL
|
|
|
|
* @avg_in: (out) (allow-none): the average input rate, or NULL
|
|
|
|
* @avg_out: (out) (allow-none): the average output rate, or NULL
|
|
|
|
* @buffering_left: (out) (allow-none): amount of buffering time left in
|
|
|
|
* milliseconds, or NULL
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
*
|
|
|
|
* Extracts the buffering stats values from @message.
|
|
|
|
*
|
|
|
|
* Since: 0.10.20
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_buffering_stats (GstMessage * message,
|
|
|
|
GstBufferingMode * mode, gint * avg_in, gint * avg_out,
|
|
|
|
gint64 * buffering_left)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_BUFFERING);
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
if (mode)
|
2011-05-10 11:34:10 +00:00
|
|
|
*mode = g_value_get_enum (gst_structure_id_get_value (structure,
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
GST_QUARK (BUFFERING_MODE)));
|
|
|
|
if (avg_in)
|
2011-05-10 11:34:10 +00:00
|
|
|
*avg_in = g_value_get_int (gst_structure_id_get_value (structure,
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
GST_QUARK (AVG_IN_RATE)));
|
|
|
|
if (avg_out)
|
2011-05-10 11:34:10 +00:00
|
|
|
*avg_out = g_value_get_int (gst_structure_id_get_value (structure,
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
GST_QUARK (AVG_OUT_RATE)));
|
|
|
|
if (buffering_left)
|
|
|
|
*buffering_left =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_int64 (gst_structure_id_get_value (structure,
|
Reorder the message docs and headers for clarity.
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstmessage.c: (gst_message_set_buffering_stats),
(gst_message_parse_buffering_stats):
* gst/gstmessage.h:
* gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
(gst_query_parse_latency), (gst_query_new_buffering),
(gst_query_set_buffering_percent),
(gst_query_parse_buffering_percent),
(gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
(gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
* gst/gstquery.h:
Reorder the message docs and headers for clarity.
Add aditional buffering stats API for messages.
Add buffering query.
Convert some leftover queries to use GstQuark.
API: gst_message_set_buffering_stats
API: gst_message_parse_buffering_stats
API: GST_QUERY_BUFFERING
API: GstBufferingMode
API: gst_query_new_buffering
API: gst_query_set_buffering_percent
API: gst_query_parse_buffering_percent
API: gst_query_set_buffering_stats
API: gst_query_parse_buffering_stats
API: gst_query_set_buffering_avail
API: gst_query_parse_buffering_avail
2008-04-08 19:59:06 +00:00
|
|
|
GST_QUARK (BUFFERING_LEFT)));
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
check/Makefile.am: don't valgrind the controller test - it's leaking - Stefan, HELP
Original commit message from CVS:
* check/Makefile.am:
don't valgrind the controller test - it's leaking - Stefan, HELP
* gst/check/gstcheck.c: (gst_check_message_error),
(gst_check_chain_func), (gst_check_setup_element),
(gst_check_teardown_element), (gst_check_setup_src_pad),
(gst_check_teardown_src_pad), (gst_check_setup_sink_pad),
(gst_check_teardown_sink_pad):
* gst/check/gstcheck.h:
add a bunch of methods to set up elements, and src and sink pads
* check/elements/fakesrc.c: (setup_fakesrc), (cleanup_fakesrc):
* check/elements/identity.c: (setup_identity), (cleanup_identity),
(GST_START_TEST):
use them
* gst/gstmessage.c:
* gst/gsttag.h:
whitespace/doc fixes
2005-08-21 10:39:39 +00:00
|
|
|
* gst_message_parse_state_changed:
|
2005-10-09 17:53:33 +00:00
|
|
|
* @message: a valid #GstMessage of type GST_MESSAGE_STATE_CHANGED
|
2010-12-07 18:35:04 +00:00
|
|
|
* @oldstate: (out) (allow-none): the previous state, or NULL
|
|
|
|
* @newstate: (out) (allow-none): the new (current) state, or NULL
|
|
|
|
* @pending: (out) (allow-none): the pending (target) state, or NULL
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
|
|
|
* Extracts the old and new states from the GstMessage.
|
|
|
|
*
|
2010-04-07 18:30:49 +00:00
|
|
|
* Typical usage of this function might be:
|
|
|
|
* |[
|
|
|
|
* ...
|
|
|
|
* switch (GST_MESSAGE_TYPE (msg)) {
|
|
|
|
* case GST_MESSAGE_STATE_CHANGED: {
|
|
|
|
* GstState old_state, new_state;
|
|
|
|
*
|
|
|
|
* gst_message_parse_state_changed (msg, &old_state, &new_state, NULL);
|
|
|
|
* g_print ("Element %s changed state from %s to %s.\n",
|
|
|
|
* GST_OBJECT_NAME (msg->src),
|
|
|
|
* gst_element_state_get_name (old_state),
|
|
|
|
* gst_element_state_get_name (new_state));
|
|
|
|
* break;
|
|
|
|
* }
|
|
|
|
* ...
|
|
|
|
* }
|
|
|
|
* ...
|
|
|
|
* ]|
|
|
|
|
*
|
2005-03-21 17:34:02 +00:00
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
Seriously, this is better than a previous commit as we only need to notify the fact that an element changed state in ...
Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
* check/gst/gstmessage.c: (GST_START_TEST):
* check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
(bin_bus_handler):
* gst/gstelement.c: (gst_element_abort_state),
(gst_element_commit_state), (gst_element_lost_state):
* gst/gstmessage.c: (gst_message_new_state_changed),
(gst_message_new_state_dirty), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_parse_state_changed),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration):
* gst/gstmessage.h:
* tools/gst-launch.c: (event_loop):
Seriously, this is better than a previous commit as we only need
to notify the fact that an element changed state in a streaming
thread, marking the state of the parents dirty, hence the
STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
message.
2005-10-18 16:25:38 +00:00
|
|
|
gst_message_parse_state_changed (GstMessage * message,
|
2005-10-18 13:19:16 +00:00
|
|
|
GstState * oldstate, GstState * newstate, GstState * pending)
|
2005-03-21 17:34:02 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STATE_CHANGED);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
2005-10-09 20:19:48 +00:00
|
|
|
if (oldstate)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*oldstate =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_enum (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (OLD_STATE)));
|
2005-10-09 20:19:48 +00:00
|
|
|
if (newstate)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*newstate =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_enum (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (NEW_STATE)));
|
2005-10-08 08:58:45 +00:00
|
|
|
if (pending)
|
2011-05-10 11:34:10 +00:00
|
|
|
*pending = g_value_get_enum (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (PENDING_STATE)));
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
/**
|
|
|
|
* gst_message_parse_clock_provide:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_CLOCK_PROVIDE.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @clock: (out) (allow-none) (transfer none): a pointer to hold a clock
|
|
|
|
* object, or NULL
|
|
|
|
* @ready: (out) (allow-none): a pointer to hold the ready flag, or NULL
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
*
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
* Extracts the clock and ready flag from the GstMessage.
|
|
|
|
* The clock object returned remains valid until the message is freed.
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
gst_message_parse_clock_provide (GstMessage * message, GstClock ** clock,
|
|
|
|
gboolean * ready)
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
{
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
const GValue *clock_gvalue;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_CLOCK_PROVIDE);
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
clock_gvalue = gst_structure_id_get_value (structure, GST_QUARK (CLOCK));
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
g_return_if_fail (clock_gvalue != NULL);
|
|
|
|
g_return_if_fail (G_VALUE_TYPE (clock_gvalue) == GST_TYPE_CLOCK);
|
|
|
|
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
if (ready)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*ready =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_boolean (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (READY)));
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
if (clock)
|
|
|
|
*clock = (GstClock *) g_value_get_object (clock_gvalue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_clock_lost:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_CLOCK_LOST.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @clock: (out) (allow-none) (transfer none): a pointer to hold the lost clock
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
*
|
|
|
|
* Extracts the lost clock from the GstMessage.
|
|
|
|
* The clock object returned remains valid until the message is freed.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_clock_lost (GstMessage * message, GstClock ** clock)
|
|
|
|
{
|
|
|
|
const GValue *clock_gvalue;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_CLOCK_LOST);
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
clock_gvalue = gst_structure_id_get_value (structure, GST_QUARK (CLOCK));
|
gst/gstmessage.*: Also carry the clock in question.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_clock_lost), (gst_message_new_new_clock),
(gst_message_new_segment_start), (gst_message_new_segment_done),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock):
* gst/gstmessage.h:
Also carry the clock in question.
2005-10-08 12:56:37 +00:00
|
|
|
g_return_if_fail (clock_gvalue != NULL);
|
|
|
|
g_return_if_fail (G_VALUE_TYPE (clock_gvalue) == GST_TYPE_CLOCK);
|
|
|
|
|
|
|
|
if (clock)
|
|
|
|
*clock = (GstClock *) g_value_get_object (clock_gvalue);
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_new_clock:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_NEW_CLOCK.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @clock: (out) (allow-none) (transfer none): a pointer to hold the selected
|
|
|
|
* new clock
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
*
|
|
|
|
* Extracts the new clock from the GstMessage.
|
|
|
|
* The clock object returned remains valid until the message is freed.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_new_clock (GstMessage * message, GstClock ** clock)
|
|
|
|
{
|
|
|
|
const GValue *clock_gvalue;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_NEW_CLOCK);
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
clock_gvalue = gst_structure_id_get_value (structure, GST_QUARK (CLOCK));
|
gst/gstmessage.*: Clean up.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_custom),
(gst_message_new_eos), (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_tag),
(gst_message_new_state_changed), (gst_message_new_clock_provide),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_new_clock):
* gst/gstmessage.h:
Clean up.
Added clock related messages.
* gst/gstpipeline.c: (gst_pipeline_change_state):
Post message when the clock changed.
* tools/gst-launch.c: (event_loop):
Print new clock.
2005-10-08 12:36:36 +00:00
|
|
|
g_return_if_fail (clock_gvalue != NULL);
|
|
|
|
g_return_if_fail (G_VALUE_TYPE (clock_gvalue) == GST_TYPE_CLOCK);
|
|
|
|
|
|
|
|
if (clock)
|
|
|
|
*clock = (GstClock *) g_value_get_object (clock_gvalue);
|
|
|
|
}
|
|
|
|
|
2008-10-06 15:31:49 +00:00
|
|
|
/**
|
|
|
|
* gst_message_parse_structure_change:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_STRUCTURE_CHANGE.
|
2010-06-16 16:09:57 +00:00
|
|
|
* @type: (out): A pointer to hold the change type
|
2010-12-07 18:35:04 +00:00
|
|
|
* @owner: (out) (allow-none) (transfer none): The owner element of the
|
|
|
|
* message source
|
|
|
|
* @busy: (out) (allow-none): a pointer to hold whether the change is in
|
|
|
|
* progress or has been completed
|
2008-10-06 15:31:49 +00:00
|
|
|
*
|
|
|
|
* Extracts the change type and completion status from the GstMessage.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.22
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_structure_change (GstMessage * message,
|
|
|
|
GstStructureChangeType * type, GstElement ** owner, gboolean * busy)
|
|
|
|
{
|
|
|
|
const GValue *owner_gvalue;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
2008-10-06 15:31:49 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STRUCTURE_CHANGE);
|
2008-10-06 15:31:49 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
owner_gvalue = gst_structure_id_get_value (structure, GST_QUARK (OWNER));
|
2008-10-06 15:31:49 +00:00
|
|
|
g_return_if_fail (owner_gvalue != NULL);
|
|
|
|
g_return_if_fail (G_VALUE_TYPE (owner_gvalue) == GST_TYPE_ELEMENT);
|
|
|
|
|
|
|
|
if (type)
|
2011-05-10 11:34:10 +00:00
|
|
|
*type = g_value_get_enum (gst_structure_id_get_value (structure,
|
2008-10-06 15:31:49 +00:00
|
|
|
GST_QUARK (TYPE)));
|
|
|
|
if (owner)
|
|
|
|
*owner = (GstElement *) g_value_get_object (owner_gvalue);
|
|
|
|
if (busy)
|
|
|
|
*busy =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_boolean (gst_structure_id_get_value (structure,
|
2008-10-06 15:31:49 +00:00
|
|
|
GST_QUARK (BUSY)));
|
|
|
|
}
|
|
|
|
|
2005-03-21 17:34:02 +00:00
|
|
|
/**
|
|
|
|
* gst_message_parse_error:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_ERROR.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @gerror: (out) (allow-none) (transfer full): location for the GError
|
|
|
|
* @debug: (out) (allow-none) (transfer full): location for the debug message,
|
|
|
|
* or NULL
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2005-03-22 11:32:59 +00:00
|
|
|
* Extracts the GError and debug string from the GstMessage. The values returned
|
2005-03-21 17:34:02 +00:00
|
|
|
* in the output arguments are copies; the caller must free them when done.
|
|
|
|
*
|
2010-04-07 18:30:49 +00:00
|
|
|
* Typical usage of this function might be:
|
|
|
|
* |[
|
|
|
|
* ...
|
|
|
|
* switch (GST_MESSAGE_TYPE (msg)) {
|
|
|
|
* case GST_MESSAGE_ERROR: {
|
|
|
|
* GError *err = NULL;
|
|
|
|
* gchar *dbg_info = NULL;
|
|
|
|
*
|
|
|
|
* gst_message_parse_error (msg, &err, &dbg_info);
|
|
|
|
* g_printerr ("ERROR from element %s: %s\n",
|
|
|
|
* GST_OBJECT_NAME (msg->src), err->message);
|
|
|
|
* g_printerr ("Debugging info: %s\n", (dbg_info) ? dbg_info : "none");
|
|
|
|
* g_error_free (err);
|
|
|
|
* g_free (dbg_info);
|
|
|
|
* break;
|
|
|
|
* }
|
|
|
|
* ...
|
|
|
|
* }
|
|
|
|
* ...
|
|
|
|
* ]|
|
|
|
|
*
|
2005-03-21 17:34:02 +00:00
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_error (GstMessage * message, GError ** gerror, gchar ** debug)
|
|
|
|
{
|
|
|
|
const GValue *error_gvalue;
|
2005-06-25 17:42:17 +00:00
|
|
|
GError *error_val;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_ERROR);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
error_gvalue = gst_structure_id_get_value (structure, GST_QUARK (GERROR));
|
2005-03-21 17:34:02 +00:00
|
|
|
g_return_if_fail (error_gvalue != NULL);
|
2005-07-12 16:28:36 +00:00
|
|
|
g_return_if_fail (G_VALUE_TYPE (error_gvalue) == GST_TYPE_G_ERROR);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-07-12 16:28:36 +00:00
|
|
|
error_val = (GError *) g_value_get_boxed (error_gvalue);
|
2005-06-25 17:42:17 +00:00
|
|
|
if (error_val)
|
|
|
|
*gerror = g_error_copy (error_val);
|
|
|
|
else
|
|
|
|
*gerror = NULL;
|
2006-01-06 17:16:40 +00:00
|
|
|
|
|
|
|
if (debug)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*debug =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_dup_string (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (DEBUG)));
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_warning:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_WARNING.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @gerror: (out) (allow-none) (transfer full): location for the GError
|
|
|
|
* @debug: (out) (allow-none) (transfer full): location for the debug message,
|
|
|
|
* or NULL
|
2005-03-21 17:34:02 +00:00
|
|
|
*
|
2005-03-22 11:32:59 +00:00
|
|
|
* Extracts the GError and debug string from the GstMessage. The values returned
|
2005-03-21 17:34:02 +00:00
|
|
|
* in the output arguments are copies; the caller must free them when done.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_warning (GstMessage * message, GError ** gerror,
|
|
|
|
gchar ** debug)
|
|
|
|
{
|
|
|
|
const GValue *error_gvalue;
|
2005-06-25 17:42:17 +00:00
|
|
|
GError *error_val;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
2005-03-21 17:34:02 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_WARNING);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
error_gvalue = gst_structure_id_get_value (structure, GST_QUARK (GERROR));
|
2005-03-21 17:34:02 +00:00
|
|
|
g_return_if_fail (error_gvalue != NULL);
|
2005-07-12 16:28:36 +00:00
|
|
|
g_return_if_fail (G_VALUE_TYPE (error_gvalue) == GST_TYPE_G_ERROR);
|
2005-03-21 17:34:02 +00:00
|
|
|
|
2005-07-12 16:28:36 +00:00
|
|
|
error_val = (GError *) g_value_get_boxed (error_gvalue);
|
2005-06-25 17:42:17 +00:00
|
|
|
if (error_val)
|
|
|
|
*gerror = g_error_copy (error_val);
|
|
|
|
else
|
|
|
|
*gerror = NULL;
|
|
|
|
|
2006-01-06 17:16:40 +00:00
|
|
|
if (debug)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*debug =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_dup_string (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (DEBUG)));
|
2005-03-21 17:34:02 +00:00
|
|
|
}
|
2005-07-20 18:02:13 +00:00
|
|
|
|
2007-02-28 16:40:02 +00:00
|
|
|
/**
|
|
|
|
* gst_message_parse_info:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_INFO.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @gerror: (out) (allow-none) (transfer full): location for the GError
|
|
|
|
* @debug: (out) (allow-none) (transfer full): location for the debug message,
|
|
|
|
* or NULL
|
2007-02-28 16:40:02 +00:00
|
|
|
*
|
|
|
|
* Extracts the GError and debug string from the GstMessage. The values returned
|
|
|
|
* in the output arguments are copies; the caller must free them when done.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.12
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_info (GstMessage * message, GError ** gerror, gchar ** debug)
|
|
|
|
{
|
|
|
|
const GValue *error_gvalue;
|
|
|
|
GError *error_val;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
2007-02-28 16:40:02 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_INFO);
|
2007-02-28 16:40:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
error_gvalue = gst_structure_id_get_value (structure, GST_QUARK (GERROR));
|
2007-02-28 16:40:02 +00:00
|
|
|
g_return_if_fail (error_gvalue != NULL);
|
|
|
|
g_return_if_fail (G_VALUE_TYPE (error_gvalue) == GST_TYPE_G_ERROR);
|
|
|
|
|
|
|
|
error_val = (GError *) g_value_get_boxed (error_gvalue);
|
|
|
|
if (error_val)
|
|
|
|
*gerror = g_error_copy (error_val);
|
|
|
|
else
|
|
|
|
*gerror = NULL;
|
|
|
|
|
|
|
|
if (debug)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*debug =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_dup_string (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (DEBUG)));
|
2007-02-28 16:40:02 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 18:02:13 +00:00
|
|
|
/**
|
|
|
|
* gst_message_parse_segment_start:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_SEGMENT_START.
|
2010-06-16 16:09:57 +00:00
|
|
|
* @format: (out): Result location for the format, or NULL
|
|
|
|
* @position: (out): Result location for the position, or NULL
|
2005-07-20 18:02:13 +00:00
|
|
|
*
|
2005-10-18 13:19:16 +00:00
|
|
|
* Extracts the position and format from the segment start message.
|
2005-07-20 18:02:13 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
2005-10-18 13:19:16 +00:00
|
|
|
gst_message_parse_segment_start (GstMessage * message, GstFormat * format,
|
|
|
|
gint64 * position)
|
2005-07-20 18:02:13 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2005-07-20 18:02:13 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_SEGMENT_START);
|
2005-07-20 18:02:13 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
2005-10-18 13:19:16 +00:00
|
|
|
if (format)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*format =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_enum (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (FORMAT)));
|
2005-10-18 13:19:16 +00:00
|
|
|
if (position)
|
|
|
|
*position =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_int64 (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (POSITION)));
|
2005-07-20 18:02:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_segment_done:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_SEGMENT_DONE.
|
2010-06-16 16:09:57 +00:00
|
|
|
* @format: (out): Result location for the format, or NULL
|
|
|
|
* @position: (out): Result location for the position, or NULL
|
2005-07-20 18:02:13 +00:00
|
|
|
*
|
2005-10-18 13:19:16 +00:00
|
|
|
* Extracts the position and format from the segment start message.
|
2005-07-20 18:02:13 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
2005-10-18 13:19:16 +00:00
|
|
|
gst_message_parse_segment_done (GstMessage * message, GstFormat * format,
|
|
|
|
gint64 * position)
|
2005-07-20 18:02:13 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2005-07-20 18:02:13 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_SEGMENT_DONE);
|
2005-07-20 18:02:13 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
2005-10-18 13:19:16 +00:00
|
|
|
if (format)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*format =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_enum (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (FORMAT)));
|
2005-10-18 13:19:16 +00:00
|
|
|
if (position)
|
|
|
|
*position =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_int64 (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (POSITION)));
|
2005-10-18 13:19:16 +00:00
|
|
|
}
|
2005-07-20 18:02:13 +00:00
|
|
|
|
2005-10-18 13:19:16 +00:00
|
|
|
/**
|
|
|
|
* gst_message_parse_duration:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_DURATION.
|
2010-06-16 16:09:57 +00:00
|
|
|
* @format: (out): Result location for the format, or NULL
|
|
|
|
* @duration: (out): Result location for the duration, or NULL
|
2005-10-18 13:19:16 +00:00
|
|
|
*
|
2005-11-21 10:41:03 +00:00
|
|
|
* Extracts the duration and format from the duration message. The duration
|
|
|
|
* might be GST_CLOCK_TIME_NONE, which indicates that the duration has
|
|
|
|
* changed. Applications should always use a query to retrieve the duration
|
|
|
|
* of a pipeline.
|
2005-10-18 13:19:16 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_duration (GstMessage * message, GstFormat * format,
|
|
|
|
gint64 * duration)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2005-10-18 13:19:16 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_DURATION);
|
2005-10-18 13:19:16 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
2005-10-18 13:19:16 +00:00
|
|
|
if (format)
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
*format =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_enum (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (FORMAT)));
|
2005-10-18 13:19:16 +00:00
|
|
|
if (duration)
|
|
|
|
*duration =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_int64 (gst_structure_id_get_value (structure,
|
gst/gstmessage.c: Use GstQuark for messages.
Original commit message from CVS:
* gst/gstmessage.c: (gst_message_new_error),
(gst_message_new_warning), (gst_message_new_info),
(gst_message_new_buffering), (gst_message_new_state_changed),
(gst_message_new_clock_provide), (gst_message_new_clock_lost),
(gst_message_new_new_clock), (gst_message_new_segment_start),
(gst_message_new_segment_done), (gst_message_new_duration),
(gst_message_new_async_start), (gst_message_parse_buffering),
(gst_message_parse_state_changed),
(gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
(gst_message_parse_new_clock), (gst_message_parse_error),
(gst_message_parse_warning), (gst_message_parse_info),
(gst_message_parse_segment_start),
(gst_message_parse_segment_done), (gst_message_parse_duration),
(gst_message_parse_async_start):
Use GstQuark for messages.
2008-04-08 19:52:22 +00:00
|
|
|
GST_QUARK (DURATION)));
|
2005-07-20 18:02:13 +00:00
|
|
|
}
|
2007-03-19 09:55:02 +00:00
|
|
|
|
|
|
|
/**
|
2011-06-08 11:40:32 +00:00
|
|
|
* gst_message_parse_async_done:
|
2007-03-19 09:55:02 +00:00
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_ASYNC_DONE.
|
2011-06-08 15:25:43 +00:00
|
|
|
* @reset_time: (out): Result location for the reset_time or NULL
|
2007-03-19 09:55:02 +00:00
|
|
|
*
|
2011-06-08 15:25:43 +00:00
|
|
|
* Extract the reset_time from the async_done message.
|
2007-03-19 09:55:02 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*/
|
|
|
|
void
|
2011-06-08 15:25:43 +00:00
|
|
|
gst_message_parse_async_done (GstMessage * message, gboolean * reset_time)
|
2007-03-19 09:55:02 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2007-03-19 09:55:02 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2011-06-08 11:40:32 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_ASYNC_DONE);
|
2007-03-19 09:55:02 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
2011-06-08 15:25:43 +00:00
|
|
|
if (reset_time)
|
|
|
|
*reset_time =
|
2011-05-10 11:34:10 +00:00
|
|
|
g_value_get_boolean (gst_structure_id_get_value (structure,
|
2011-06-08 15:25:43 +00:00
|
|
|
GST_QUARK (RESET_TIME)));
|
2007-03-19 09:55:02 +00:00
|
|
|
}
|
2009-02-18 14:31:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_request_state:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_REQUEST_STATE.
|
2010-06-16 16:09:57 +00:00
|
|
|
* @state: (out): Result location for the requested state or NULL
|
2009-02-18 14:31:55 +00:00
|
|
|
*
|
|
|
|
* Extract the requested state from the request_state message.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.23
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_request_state (GstMessage * message, GstState * state)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2009-02-18 14:31:55 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_REQUEST_STATE);
|
2009-02-18 14:31:55 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
2009-02-18 14:31:55 +00:00
|
|
|
if (state)
|
2011-05-10 11:34:10 +00:00
|
|
|
*state = g_value_get_enum (gst_structure_id_get_value (structure,
|
2009-02-18 14:31:55 +00:00
|
|
|
GST_QUARK (NEW_STATE)));
|
|
|
|
}
|
2009-04-21 11:42:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_stream_status:
|
|
|
|
* @src: The object originating the message.
|
|
|
|
* @type: The stream status type.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @owner: (transfer none): the owner element of @src.
|
2009-04-21 11:42:01 +00:00
|
|
|
*
|
|
|
|
* Create a new stream status message. This message is posted when a streaming
|
|
|
|
* thread is created/destroyed or when the state changed.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new stream status message.
|
2009-04-21 11:42:01 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24.
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_stream_status (GstObject * src, GstStreamStatusType type,
|
|
|
|
GstElement * owner)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
2009-05-29 17:22:42 +00:00
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_STREAM_STATUS),
|
2009-04-21 11:42:01 +00:00
|
|
|
GST_QUARK (TYPE), GST_TYPE_STREAM_STATUS_TYPE, (gint) type,
|
|
|
|
GST_QUARK (OWNER), GST_TYPE_ELEMENT, owner, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_STREAM_STATUS, src, structure);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_stream_status:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_STREAM_STATUS.
|
2010-06-16 16:09:57 +00:00
|
|
|
* @type: (out): A pointer to hold the status type
|
2010-12-07 18:35:04 +00:00
|
|
|
* @owner: (out) (transfer none): The owner element of the message source
|
2009-04-21 11:42:01 +00:00
|
|
|
*
|
2009-04-22 08:14:46 +00:00
|
|
|
* Extracts the stream status type and owner the GstMessage. The returned
|
|
|
|
* owner remains valid for as long as the reference to @message is valid and
|
|
|
|
* should thus not be unreffed.
|
2009-04-21 11:42:01 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
2009-05-22 08:33:02 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.24.
|
2009-04-21 11:42:01 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_stream_status (GstMessage * message,
|
|
|
|
GstStreamStatusType * type, GstElement ** owner)
|
|
|
|
{
|
|
|
|
const GValue *owner_gvalue;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
2009-04-21 11:42:01 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STREAM_STATUS);
|
2009-04-21 11:42:01 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
owner_gvalue = gst_structure_id_get_value (structure, GST_QUARK (OWNER));
|
2009-04-21 11:42:01 +00:00
|
|
|
g_return_if_fail (owner_gvalue != NULL);
|
|
|
|
|
|
|
|
if (type)
|
2011-05-10 11:34:10 +00:00
|
|
|
*type = g_value_get_enum (gst_structure_id_get_value (structure,
|
2009-04-21 11:42:01 +00:00
|
|
|
GST_QUARK (TYPE)));
|
|
|
|
if (owner)
|
|
|
|
*owner = (GstElement *) g_value_get_object (owner_gvalue);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_set_stream_status_object:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_STREAM_STATUS.
|
|
|
|
* @object: the object controlling the streaming
|
|
|
|
*
|
|
|
|
* Configures the object handling the streaming thread. This is usually a
|
|
|
|
* GstTask object but other objects might be added in the future.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_set_stream_status_object (GstMessage * message,
|
|
|
|
const GValue * object)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2009-04-21 11:42:01 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STREAM_STATUS);
|
2009-04-21 11:42:01 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_set_value (structure, GST_QUARK (OBJECT), object);
|
2009-04-21 11:42:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_get_stream_status_object:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_STREAM_STATUS.
|
|
|
|
*
|
|
|
|
* Extracts the object managing the streaming thread from @message.
|
|
|
|
*
|
|
|
|
* Returns: a GValue containing the object that manages the streaming thread.
|
|
|
|
* This object is usually of type GstTask but other types can be added in the
|
|
|
|
* future. The object remains valid as long as @message is valid.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
const GValue *
|
|
|
|
gst_message_get_stream_status_object (GstMessage * message)
|
|
|
|
{
|
|
|
|
const GValue *result;
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
2009-04-21 11:42:01 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_MESSAGE (message), NULL);
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_val_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STREAM_STATUS,
|
2009-04-21 11:42:01 +00:00
|
|
|
NULL);
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
result = gst_structure_id_get_value (structure, GST_QUARK (OBJECT));
|
2009-04-21 11:42:01 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2009-06-01 10:19:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_step_done:
|
|
|
|
* @src: The object originating the message.
|
|
|
|
* @format: the format of @amount
|
|
|
|
* @amount: the amount of stepped data
|
|
|
|
* @rate: the rate of the stepped amount
|
2009-05-18 13:48:20 +00:00
|
|
|
* @flush: is this an flushing step
|
2009-06-01 10:19:52 +00:00
|
|
|
* @intermediate: is this an intermediate step
|
2009-05-18 13:48:20 +00:00
|
|
|
* @duration: the duration of the data
|
2009-06-12 11:18:21 +00:00
|
|
|
* @eos: the step caused EOS
|
2009-06-01 10:19:52 +00:00
|
|
|
*
|
|
|
|
* This message is posted by elements when they complete a part, when @intermediate set
|
|
|
|
* to TRUE, or a complete step operation.
|
|
|
|
*
|
|
|
|
* @duration will contain the amount of time (in GST_FORMAT_TIME) of the stepped
|
|
|
|
* @amount of media in format @format.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new step_done message.
|
2009-06-01 10:19:52 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_step_done (GstObject * src, GstFormat format, guint64 amount,
|
2009-06-12 11:18:21 +00:00
|
|
|
gdouble rate, gboolean flush, gboolean intermediate, guint64 duration,
|
|
|
|
gboolean eos)
|
2009-06-01 10:19:52 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_STEP_DONE),
|
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
|
|
|
|
GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
|
2009-05-18 13:48:20 +00:00
|
|
|
GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
|
|
|
|
GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate,
|
2009-06-12 11:18:21 +00:00
|
|
|
GST_QUARK (DURATION), G_TYPE_UINT64, duration,
|
|
|
|
GST_QUARK (EOS), G_TYPE_BOOLEAN, eos, NULL);
|
2009-06-01 10:19:52 +00:00
|
|
|
message = gst_message_new_custom (GST_MESSAGE_STEP_DONE, src, structure);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_step_done:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_STEP_DONE.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @format: (out) (allow-none): result location for the format
|
|
|
|
* @amount: (out) (allow-none): result location for the amount
|
|
|
|
* @rate: (out) (allow-none): result location for the rate
|
|
|
|
* @flush: (out) (allow-none): result location for the flush flag
|
|
|
|
* @intermediate: (out) (allow-none): result location for the intermediate flag
|
|
|
|
* @duration: (out) (allow-none): result location for the duration
|
|
|
|
* @eos: (out) (allow-none): result location for the EOS flag
|
2009-06-01 10:19:52 +00:00
|
|
|
*
|
2009-06-12 13:48:35 +00:00
|
|
|
* Extract the values the step_done message.
|
2009-06-01 10:19:52 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_step_done (GstMessage * message, GstFormat * format,
|
2009-05-18 13:48:20 +00:00
|
|
|
guint64 * amount, gdouble * rate, gboolean * flush, gboolean * intermediate,
|
2009-06-12 11:18:21 +00:00
|
|
|
guint64 * duration, gboolean * eos)
|
2009-06-01 10:19:52 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2009-06-01 10:19:52 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STEP_DONE);
|
2009-06-01 10:19:52 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_get (structure,
|
2009-06-12 11:18:21 +00:00
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
|
|
|
|
GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
|
|
|
|
GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
|
|
|
|
GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate,
|
2009-06-30 16:22:25 +00:00
|
|
|
GST_QUARK (DURATION), G_TYPE_UINT64, duration,
|
2009-06-12 11:18:21 +00:00
|
|
|
GST_QUARK (EOS), G_TYPE_BOOLEAN, eos, NULL);
|
2009-06-01 10:19:52 +00:00
|
|
|
}
|
2009-06-10 13:48:35 +00:00
|
|
|
|
2009-06-12 13:48:35 +00:00
|
|
|
/**
|
|
|
|
* gst_message_new_step_start:
|
|
|
|
* @src: The object originating the message.
|
|
|
|
* @active: if the step is active or queued
|
|
|
|
* @format: the format of @amount
|
|
|
|
* @amount: the amount of stepped data
|
|
|
|
* @rate: the rate of the stepped amount
|
|
|
|
* @flush: is this an flushing step
|
|
|
|
* @intermediate: is this an intermediate step
|
|
|
|
*
|
|
|
|
* This message is posted by elements when they accept or activate a new step
|
|
|
|
* event for @amount in @format.
|
|
|
|
*
|
|
|
|
* @active is set to FALSE when the element accepted the new step event and has
|
|
|
|
* queued it for execution in the streaming threads.
|
|
|
|
*
|
|
|
|
* @active is set to TRUE when the element has activated the step operation and
|
|
|
|
* is now ready to start executing the step in the streaming thread. After this
|
|
|
|
* message is emited, the application can queue a new step operation in the
|
|
|
|
* element.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new step_start message.
|
2009-06-12 13:48:35 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
2009-06-10 13:48:35 +00:00
|
|
|
GstMessage *
|
2009-06-12 11:18:21 +00:00
|
|
|
gst_message_new_step_start (GstObject * src, gboolean active, GstFormat format,
|
|
|
|
guint64 amount, gdouble rate, gboolean flush, gboolean intermediate)
|
2009-06-10 13:48:35 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_STEP_START),
|
2009-06-12 11:18:21 +00:00
|
|
|
GST_QUARK (ACTIVE), G_TYPE_BOOLEAN, active,
|
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
|
|
|
|
GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
|
|
|
|
GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
|
|
|
|
GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate, NULL);
|
2009-06-10 13:48:35 +00:00
|
|
|
message = gst_message_new_custom (GST_MESSAGE_STEP_START, src, structure);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2009-06-12 13:48:35 +00:00
|
|
|
/**
|
|
|
|
* gst_message_parse_step_start:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_STEP_DONE.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @active: (out) (allow-none): result location for the active flag
|
|
|
|
* @format: (out) (allow-none): result location for the format
|
|
|
|
* @amount: (out) (allow-none): result location for the amount
|
|
|
|
* @rate: (out) (allow-none): result location for the rate
|
|
|
|
* @flush: (out) (allow-none): result location for the flush flag
|
|
|
|
* @intermediate: (out) (allow-none): result location for the intermediate flag
|
2009-06-12 13:48:35 +00:00
|
|
|
*
|
|
|
|
* Extract the values from step_start message.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.24
|
|
|
|
*/
|
2009-06-10 13:48:35 +00:00
|
|
|
void
|
2009-06-12 11:18:21 +00:00
|
|
|
gst_message_parse_step_start (GstMessage * message, gboolean * active,
|
|
|
|
GstFormat * format, guint64 * amount, gdouble * rate, gboolean * flush,
|
|
|
|
gboolean * intermediate)
|
2009-06-10 13:48:35 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2009-06-10 13:48:35 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
2009-10-23 17:13:52 +00:00
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STEP_START);
|
2009-06-10 13:48:35 +00:00
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_get (structure,
|
2009-06-12 11:18:21 +00:00
|
|
|
GST_QUARK (ACTIVE), G_TYPE_BOOLEAN, active,
|
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (AMOUNT), G_TYPE_UINT64, amount,
|
|
|
|
GST_QUARK (RATE), G_TYPE_DOUBLE, rate,
|
|
|
|
GST_QUARK (FLUSH), G_TYPE_BOOLEAN, flush,
|
|
|
|
GST_QUARK (INTERMEDIATE), G_TYPE_BOOLEAN, intermediate, NULL);
|
2009-06-10 13:48:35 +00:00
|
|
|
}
|
2010-03-17 18:16:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_qos:
|
|
|
|
* @src: The object originating the message.
|
|
|
|
* @live: if the message was generated by a live element
|
|
|
|
* @running_time: the running time of the buffer that generated the message
|
|
|
|
* @stream_time: the stream time of the buffer that generated the message
|
|
|
|
* @timestamp: the timestamps of the buffer that generated the message
|
|
|
|
* @duration: the duration of the buffer that generated the message
|
|
|
|
*
|
2010-03-17 18:26:30 +00:00
|
|
|
* A QOS message is posted on the bus whenever an element decides to drop a
|
|
|
|
* buffer because of QoS reasons or whenever it changes its processing strategy
|
|
|
|
* because of QoS reasons (quality adjustments such as processing at lower
|
|
|
|
* accuracy).
|
2010-03-17 18:16:42 +00:00
|
|
|
*
|
|
|
|
* This message can be posted by an element that performs synchronisation against the
|
|
|
|
* clock (live) or it could be dropped by an element that performs QoS because of QOS
|
|
|
|
* events received from a downstream element (!live).
|
|
|
|
*
|
|
|
|
* @running_time, @stream_time, @timestamp, @duration should be set to the
|
|
|
|
* respective running-time, stream-time, timestamp and duration of the (dropped)
|
|
|
|
* buffer that generated the QoS event. Values can be left to
|
|
|
|
* GST_CLOCK_TIME_NONE when unknown.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): The new qos message.
|
2010-03-17 18:16:42 +00:00
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.29
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_qos (GstObject * src, gboolean live, guint64 running_time,
|
|
|
|
guint64 stream_time, guint64 timestamp, guint64 duration)
|
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_QOS),
|
|
|
|
GST_QUARK (LIVE), G_TYPE_BOOLEAN, live,
|
|
|
|
GST_QUARK (RUNNING_TIME), G_TYPE_UINT64, running_time,
|
|
|
|
GST_QUARK (STREAM_TIME), G_TYPE_UINT64, stream_time,
|
|
|
|
GST_QUARK (TIMESTAMP), G_TYPE_UINT64, timestamp,
|
|
|
|
GST_QUARK (DURATION), G_TYPE_UINT64, duration,
|
|
|
|
GST_QUARK (JITTER), G_TYPE_INT64, (gint64) 0,
|
|
|
|
GST_QUARK (PROPORTION), G_TYPE_DOUBLE, (gdouble) 1.0,
|
|
|
|
GST_QUARK (QUALITY), G_TYPE_INT, (gint) 1000000,
|
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, GST_FORMAT_UNDEFINED,
|
|
|
|
GST_QUARK (PROCESSED), G_TYPE_UINT64, (guint64) - 1,
|
|
|
|
GST_QUARK (DROPPED), G_TYPE_UINT64, (guint64) - 1, NULL);
|
|
|
|
message = gst_message_new_custom (GST_MESSAGE_QOS, src, structure);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_set_qos_values:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_QOS.
|
|
|
|
* @jitter: The difference of the running-time against the deadline.
|
|
|
|
* @proportion: Long term prediction of the ideal rate relative to normal rate
|
|
|
|
* to get optimal quality.
|
|
|
|
* @quality: An element dependent integer value that specifies the current
|
|
|
|
* quality level of the element. The default maximum quality is 1000000.
|
|
|
|
*
|
|
|
|
* Set the QoS values that have been calculated/analysed from the QoS data
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.29
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_set_qos_values (GstMessage * message, gint64 jitter,
|
|
|
|
gdouble proportion, gint quality)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2010-03-17 18:16:42 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_QOS);
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_set (structure,
|
2010-03-17 18:16:42 +00:00
|
|
|
GST_QUARK (JITTER), G_TYPE_INT64, jitter,
|
|
|
|
GST_QUARK (PROPORTION), G_TYPE_DOUBLE, proportion,
|
|
|
|
GST_QUARK (QUALITY), G_TYPE_INT, quality, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_set_qos_stats:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_QOS.
|
|
|
|
* @format: Units of the 'processed' and 'dropped' fields. Video sinks and video
|
|
|
|
* filters will use GST_FORMAT_BUFFERS (frames). Audio sinks and audio filters
|
|
|
|
* will likely use GST_FORMAT_DEFAULT (samples).
|
|
|
|
* @processed: Total number of units correctly processed since the last state
|
|
|
|
* change to READY or a flushing operation.
|
|
|
|
* @dropped: Total number of units dropped since the last state change to READY
|
|
|
|
* or a flushing operation.
|
|
|
|
*
|
|
|
|
* Set the QoS stats representing the history of the current continuous pipeline
|
|
|
|
* playback period.
|
|
|
|
*
|
|
|
|
* When @format is @GST_FORMAT_UNDEFINED both @dropped and @processed are
|
|
|
|
* invalid. Values of -1 for either @processed or @dropped mean unknown values.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.29
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_set_qos_stats (GstMessage * message, GstFormat format,
|
|
|
|
guint64 processed, guint64 dropped)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2010-03-17 18:16:42 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_QOS);
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_set (structure,
|
2010-03-17 18:16:42 +00:00
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (PROCESSED), G_TYPE_UINT64, processed,
|
|
|
|
GST_QUARK (DROPPED), G_TYPE_UINT64, dropped, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_qos:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_QOS.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @live: (out) (allow-none): if the message was generated by a live element
|
|
|
|
* @running_time: (out) (allow-none): the running time of the buffer that
|
|
|
|
* generated the message
|
|
|
|
* @stream_time: (out) (allow-none): the stream time of the buffer that
|
|
|
|
* generated the message
|
|
|
|
* @timestamp: (out) (allow-none): the timestamps of the buffer that
|
|
|
|
* generated the message
|
|
|
|
* @duration: (out) (allow-none): the duration of the buffer that
|
|
|
|
* generated the message
|
2010-03-17 18:16:42 +00:00
|
|
|
*
|
|
|
|
* Extract the timestamps and live status from the QoS message.
|
|
|
|
*
|
|
|
|
* The returned values give the running_time, stream_time, timestamp and
|
|
|
|
* duration of the dropped buffer. Values of GST_CLOCK_TIME_NONE mean unknown
|
|
|
|
* values.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.29
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_qos (GstMessage * message, gboolean * live,
|
|
|
|
guint64 * running_time, guint64 * stream_time, guint64 * timestamp,
|
|
|
|
guint64 * duration)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2010-03-17 18:16:42 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_QOS);
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_get (structure,
|
2010-03-17 18:16:42 +00:00
|
|
|
GST_QUARK (LIVE), G_TYPE_BOOLEAN, live,
|
|
|
|
GST_QUARK (RUNNING_TIME), G_TYPE_UINT64, running_time,
|
|
|
|
GST_QUARK (STREAM_TIME), G_TYPE_UINT64, stream_time,
|
|
|
|
GST_QUARK (TIMESTAMP), G_TYPE_UINT64, timestamp,
|
|
|
|
GST_QUARK (DURATION), G_TYPE_UINT64, duration, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_qos_values:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_QOS.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @jitter: (out) (allow-none): The difference of the running-time against
|
|
|
|
* the deadline.
|
|
|
|
* @proportion: (out) (allow-none): Long term prediction of the ideal rate
|
|
|
|
* relative to normal rate to get optimal quality.
|
|
|
|
* @quality: (out) (allow-none): An element dependent integer value that
|
|
|
|
* specifies the current quality level of the element. The default
|
|
|
|
* maximum quality is 1000000.
|
2010-03-17 18:16:42 +00:00
|
|
|
*
|
|
|
|
* Extract the QoS values that have been calculated/analysed from the QoS data
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.29
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_qos_values (GstMessage * message, gint64 * jitter,
|
|
|
|
gdouble * proportion, gint * quality)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2010-03-17 18:16:42 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_QOS);
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_get (structure,
|
2010-03-17 18:16:42 +00:00
|
|
|
GST_QUARK (JITTER), G_TYPE_INT64, jitter,
|
|
|
|
GST_QUARK (PROPORTION), G_TYPE_DOUBLE, proportion,
|
|
|
|
GST_QUARK (QUALITY), G_TYPE_INT, quality, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_qos_stats:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_QOS.
|
2010-12-07 18:35:04 +00:00
|
|
|
* @format: (out) (allow-none): Units of the 'processed' and 'dropped' fields.
|
|
|
|
* Video sinks and video filters will use GST_FORMAT_BUFFERS (frames).
|
|
|
|
* Audio sinks and audio filters will likely use GST_FORMAT_DEFAULT
|
|
|
|
* (samples).
|
|
|
|
* @processed: (out) (allow-none): Total number of units correctly processed
|
|
|
|
* since the last state change to READY or a flushing operation.
|
|
|
|
* @dropped: (out) (allow-none): Total number of units dropped since the last
|
|
|
|
* state change to READY or a flushing operation.
|
2010-03-17 18:16:42 +00:00
|
|
|
*
|
|
|
|
* Extract the QoS stats representing the history of the current continuous
|
|
|
|
* pipeline playback period.
|
|
|
|
*
|
|
|
|
* When @format is @GST_FORMAT_UNDEFINED both @dropped and @processed are
|
|
|
|
* invalid. Values of -1 for either @processed or @dropped mean unknown values.
|
|
|
|
*
|
|
|
|
* MT safe.
|
|
|
|
*
|
|
|
|
* Since: 0.10.29
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_qos_stats (GstMessage * message, GstFormat * format,
|
|
|
|
guint64 * processed, guint64 * dropped)
|
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2010-03-17 18:16:42 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_QOS);
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_get (structure,
|
2010-03-17 18:16:42 +00:00
|
|
|
GST_QUARK (FORMAT), GST_TYPE_FORMAT, format,
|
|
|
|
GST_QUARK (PROCESSED), G_TYPE_UINT64, processed,
|
|
|
|
GST_QUARK (DROPPED), G_TYPE_UINT64, dropped, NULL);
|
|
|
|
}
|
2011-01-05 12:41:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_new_progress:
|
|
|
|
* @src: The object originating the message.
|
|
|
|
* @type: a #GstProgressType
|
2011-01-06 17:55:43 +00:00
|
|
|
* @code: a progress code
|
2011-01-05 12:41:08 +00:00
|
|
|
* @text: free, user visible text describing the progress
|
|
|
|
*
|
|
|
|
* Progress messages are posted by elements when they use an asynchronous task
|
|
|
|
* to perform actions triggered by a state change.
|
|
|
|
*
|
2011-01-06 17:55:43 +00:00
|
|
|
* @code contains a well defined string describing the action.
|
2011-01-05 12:41:08 +00:00
|
|
|
* @test should contain a user visible string detailing the current action.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): The new qos message.
|
|
|
|
*
|
|
|
|
* Since: 0.10.33
|
|
|
|
*/
|
|
|
|
GstMessage *
|
|
|
|
gst_message_new_progress (GstObject * src, GstProgressType type,
|
2011-01-06 17:55:43 +00:00
|
|
|
const gchar * code, const gchar * text)
|
2011-01-05 12:41:08 +00:00
|
|
|
{
|
|
|
|
GstMessage *message;
|
|
|
|
GstStructure *structure;
|
2011-02-15 17:26:00 +00:00
|
|
|
gint percent = 100, timeout = -1;
|
2011-01-05 12:41:08 +00:00
|
|
|
|
2011-01-06 17:55:43 +00:00
|
|
|
g_return_val_if_fail (code != NULL, NULL);
|
2011-01-05 12:41:08 +00:00
|
|
|
g_return_val_if_fail (text != NULL, NULL);
|
|
|
|
|
|
|
|
if (type == GST_PROGRESS_TYPE_START || type == GST_PROGRESS_TYPE_CONTINUE)
|
|
|
|
percent = 0;
|
|
|
|
|
|
|
|
structure = gst_structure_id_new (GST_QUARK (MESSAGE_PROGRESS),
|
|
|
|
GST_QUARK (TYPE), GST_TYPE_PROGRESS_TYPE, type,
|
2011-01-06 17:55:43 +00:00
|
|
|
GST_QUARK (CODE), G_TYPE_STRING, code,
|
2011-01-05 12:41:08 +00:00
|
|
|
GST_QUARK (TEXT), G_TYPE_STRING, text,
|
2011-02-15 17:26:00 +00:00
|
|
|
GST_QUARK (PERCENT), G_TYPE_INT, percent,
|
|
|
|
GST_QUARK (TIMEOUT), G_TYPE_INT, timeout, NULL);
|
2011-01-05 12:41:08 +00:00
|
|
|
message = gst_message_new_custom (GST_MESSAGE_PROGRESS, src, structure);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_message_parse_progress:
|
|
|
|
* @message: A valid #GstMessage of type GST_MESSAGE_PROGRESS.
|
|
|
|
* @type: (out) (allow-none): location for the type
|
2011-01-06 17:55:43 +00:00
|
|
|
* @code: (out) (allow-none) (transfer full): location for the code
|
2011-01-05 12:41:08 +00:00
|
|
|
* @text: (out) (allow-none) (transfer full): location for the text
|
|
|
|
*
|
2011-01-06 17:55:43 +00:00
|
|
|
* Parses the progress @type, @code and @text.
|
2011-01-05 12:41:08 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.33
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_message_parse_progress (GstMessage * message, GstProgressType * type,
|
2011-01-06 17:55:43 +00:00
|
|
|
gchar ** code, gchar ** text)
|
2011-01-05 12:41:08 +00:00
|
|
|
{
|
2011-05-10 11:34:10 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
|
2011-01-05 12:41:08 +00:00
|
|
|
g_return_if_fail (GST_IS_MESSAGE (message));
|
|
|
|
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_PROGRESS);
|
|
|
|
|
2011-05-10 11:34:10 +00:00
|
|
|
structure = GST_MESSAGE_STRUCTURE (message);
|
|
|
|
gst_structure_id_get (structure,
|
2011-01-05 12:41:08 +00:00
|
|
|
GST_QUARK (TYPE), GST_TYPE_PROGRESS_TYPE, type,
|
2011-01-06 17:55:43 +00:00
|
|
|
GST_QUARK (CODE), G_TYPE_STRING, code,
|
2011-01-05 12:41:08 +00:00
|
|
|
GST_QUARK (TEXT), G_TYPE_STRING, text, NULL);
|
|
|
|
}
|