mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:56:14 +00:00
Flashed out transform function
Original commit message from CVS: Flashed out transform function
This commit is contained in:
parent
6637a949e7
commit
580a572044
1 changed files with 23 additions and 13 deletions
|
@ -74,22 +74,32 @@ transform_func (const GValue *src_value,
|
||||||
{
|
{
|
||||||
GstProps *props = g_value_peek_pointer (src_value);
|
GstProps *props = g_value_peek_pointer (src_value);
|
||||||
GString *result = g_string_new ("");
|
GString *result = g_string_new ("");
|
||||||
GList *propslist = props->properties;
|
|
||||||
|
|
||||||
while (propslist) {
|
if (props) {
|
||||||
GstPropsEntry *entry = (GstPropsEntry *)propslist->data;
|
GList *propslist = props->properties;
|
||||||
const gchar *name = g_quark_to_string (entry->propid);
|
|
||||||
|
|
||||||
switch (entry->propstype) {
|
while (propslist) {
|
||||||
case GST_PROPS_STRING_TYPE:
|
GstPropsEntry *entry = (GstPropsEntry *)propslist->data;
|
||||||
g_string_append_printf (result, "%s='%s'", name, entry->data.string_data.string);
|
const gchar *name = g_quark_to_string (entry->propid);
|
||||||
default:
|
|
||||||
break;
|
switch (entry->propstype) {
|
||||||
}
|
case GST_PROPS_STRING_TYPE:
|
||||||
|
g_string_append_printf (result, "%s=(string) '%s'", name, entry->data.string_data.string);
|
||||||
|
break;
|
||||||
|
case GST_PROPS_INT_TYPE:
|
||||||
|
g_string_append_printf (result, "%s=(int) %d", name, entry->data.int_data);
|
||||||
|
break;
|
||||||
|
case GST_PROPS_FOURCC_TYPE:
|
||||||
|
g_string_append_printf (result, "%s=(fourcc) '%4.4s'", name, (gchar *)&entry->data.fourcc_data);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
propslist = g_list_next (propslist);
|
propslist = g_list_next (propslist);
|
||||||
if (propslist) {
|
if (propslist) {
|
||||||
g_string_append (result, "; ");
|
g_string_append (result, "; ");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dest_value->data[0].v_pointer = result->str;
|
dest_value->data[0].v_pointer = result->str;
|
||||||
|
|
Loading…
Reference in a new issue