summaryrefslogtreecommitdiffstats
path: root/gst/matroska/matroska-mux.c
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-06-13 19:14:41 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-06-13 19:14:41 +0000
commit70ceffb790292508d8b94bb3a675c96135eeeb44 (patch)
treecd1fc0f46f8c5a6a7073cb095694ff4f6e95db28 /gst/matroska/matroska-mux.c
parent04d1c49ef7c6fe497c4b1d9d67590952e0d1266a (diff)
gst/matroska/: Use gst_value_serialize() and gst_value_deserialize() for transforming tags from some GType to a strin...
Original commit message from CVS: * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_metadata_id_simple_tag): * gst/matroska/matroska-mux.c: (gst_matroska_mux_write_simple_tag), (gst_matroska_mux_write_data): Use gst_value_serialize() and gst_value_deserialize() for transforming tags from some GType to a string and the other way around. The default transformations in GLib don't include transformations from string to number types.
Diffstat (limited to 'gst/matroska/matroska-mux.c')
-rw-r--r--gst/matroska/matroska-mux.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c
index 1c83b5ae..58d42ae9 100644
--- a/gst/matroska/matroska-mux.c
+++ b/gst/matroska/matroska-mux.c
@@ -1546,24 +1546,21 @@ gst_matroska_mux_write_simple_tag (const GstTagList * list, const gchar * tag,
if (strcmp (tagname_gst, tag) == 0) {
GValue src = { 0, };
- GValue dest = { 0, };
+ gchar *dest;
if (!gst_tag_list_copy_value (&src, list, tag))
break;
- g_value_init (&dest, G_TYPE_STRING);
- if (g_value_transform (&src, &dest)) {
+ if ((dest = gst_value_serialize (&src))) {
simpletag_master = gst_ebml_write_master_start (ebml,
GST_MATROSKA_ID_SIMPLETAG);
gst_ebml_write_ascii (ebml, GST_MATROSKA_ID_TAGNAME, tagname_mkv);
- gst_ebml_write_utf8 (ebml, GST_MATROSKA_ID_TAGSTRING,
- g_value_get_string (&dest));
+ gst_ebml_write_utf8 (ebml, GST_MATROSKA_ID_TAGSTRING, dest);
gst_ebml_write_master_finish (ebml, simpletag_master);
} else {
GST_WARNING ("Can't transform tag '%s' to string", tagname_mkv);
}
g_value_unset (&src);
- g_value_unset (&dest);
break;
}
}
@@ -1953,6 +1950,9 @@ gst_matroska_mux_write_data (GstMatroskaMux * mux, GstMatroskaPad * collect_pad)
* one for each keyframe or each second (for all-keyframe
* streams), only the *first* video track. But that'll come later... */
+ /* TODO: index is useful for every track, should contain the number of
+ * the block in the cluster which contains the timestamp
+ */
if (is_video_keyframe) {
GstMatroskaIndex *idx;