2005-09-28 Johan Dahlin <johan@gnome.org>
+ * gst/gstmessage.c (gst_message_parse_state_changed): Use
+ gst_structure_get_enum instead of gst_structure_get_int
+
+ * gst/gststructure.c (gst_structure_get_enum): Impl.
+
+ * gst/gststructure.h (gst_structure_get_enum): Add
+
+ * docs/gst/gstreamer-sections.txt: Ditto
+
* gst/gstmessage.c (gst_message_new_state_changed): Use
GST_TYPE_STATE instead of G_TYPE_INT, mainly for language bindings
which does introspection.
gst_structure_get_string
gst_structure_get_date
gst_structure_get_clock_time
+gst_structure_get_enum
gst_structure_map_in_place
gst_structure_nth_field_name
gst_structure_set_parent_refcount
message = gst_message_new (GST_MESSAGE_STATE_CHANGED, src);
s = gst_structure_new ("GstMessageState", "old-state", GST_TYPE_STATE,
- old, "new-state", GST_TYPE_STATE, new, NULL);
+ (gint) old, "new-state", GST_TYPE_STATE, (gint) new, NULL);
gst_structure_set_parent_refcount (s, &message->mini_object.refcount);
message->structure = s;
g_return_if_fail (GST_IS_MESSAGE (message));
g_return_if_fail (GST_MESSAGE_TYPE (message) == GST_MESSAGE_STATE_CHANGED);
- if (!gst_structure_get_int (message->structure, "old-state", (gint *) old))
+ if (!gst_structure_get_enum (message->structure, "old-state",
+ GST_TYPE_STATE, (gint *) old))
g_assert_not_reached ();
- if (!gst_structure_get_int (message->structure, "new-state", (gint *) new))
+ if (!gst_structure_get_enum (message->structure, "new-state",
+ GST_TYPE_STATE, (gint *) new))
g_assert_not_reached ();
}
return g_value_get_string (&field->value);
}
+/**
+ * gst_structure_get_enum:
+ * @structure: a #GstStructure
+ * @fieldname: the name of a field
+ * @enumtype: the enum type of a field
+ * @value: a pointer to an int to set
+ *
+ * Sets the int pointed to by @value corresponding to the value of the
+ * given field. Caller is responsible for making sure the field exists,
+ * has the correct type and that the enumtype is correct.
+ *
+ * Returns: TRUE if the value could be set correctly
+ */
+gboolean
+gst_structure_get_enum (const GstStructure * structure,
+ const gchar * fieldname, GType enumtype, gint * value)
+{
+ GstStructureField *field;
+
+ g_return_val_if_fail (structure != NULL, FALSE);
+ g_return_val_if_fail (fieldname != NULL, FALSE);
+ g_return_val_if_fail (enumtype != G_TYPE_INVALID, FALSE);
+ g_return_val_if_fail (value != NULL, FALSE);
+
+ field = gst_structure_get_field (structure, fieldname);
+
+ if (field == NULL)
+ return FALSE;
+ if (!G_VALUE_HOLDS_ENUM (&field->value))
+ return FALSE;
+ if (!G_TYPE_CHECK_VALUE_TYPE (&field->value, enumtype))
+ return FALSE;
+
+ *value = g_value_get_enum (&field->value);
+
+ return TRUE;
+}
+
typedef struct _GstStructureAbbreviation
{
char *type_name;
GstClockTime *value);
G_CONST_RETURN gchar * gst_structure_get_string (const GstStructure *structure,
const gchar *fieldname);
+gboolean gst_structure_get_enum (const GstStructure *structure,
+ const gchar *fieldname,
+ GType enumtype,
+ gint *value);
gchar * gst_structure_to_string (const GstStructure *structure);
GstStructure * gst_structure_from_string (const gchar *string,