diff options
author | Stéphane Loeuillet <gstreamer@leroutier.net> | 2005-01-07 23:46:23 +0000 |
---|---|---|
committer | Stéphane Loeuillet <gstreamer@leroutier.net> | 2005-01-07 23:46:23 +0000 |
commit | c838dd54c45bb410bebf050b25892cf86fd9f22a (patch) | |
tree | 2147437f29815d90359e7e56858f9e0c98bc1dfc /gst | |
parent | 3a37a6bc0d8344b842b7e9b9ea40883bae979323 (diff) |
ext/dv/gstdvdec.c: Fix audio caps i just broke (missing ',')
Original commit message from CVS:
* ext/dv/gstdvdec.c:
Fix audio caps i just broke (missing ',')
* gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
(gst_matroska_mux_reset):
Fix typo + add FIXME about old "x-gst-metadata" crap
Diffstat (limited to 'gst')
-rw-r--r-- | gst/matroska/matroska-mux.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c index 0a9ff29c..d1267067 100644 --- a/gst/matroska/matroska-mux.c +++ b/gst/matroska/matroska-mux.c @@ -168,7 +168,7 @@ gst_matroska_mux_get_type (void) gst_matroska_mux_type = g_type_register_static (GST_TYPE_EBML_WRITE, - "GstMatroskaMmux", &gst_matroska_mux_info, 0); + "GstMatroskaMux", &gst_matroska_mux_info, 0); } return gst_matroska_mux_type; @@ -303,6 +303,8 @@ gst_matroska_mux_reset (GstElement * element) mux->num_t_streams = 0; mux->num_v_streams = 0; +/* FIXME x-gst-metadata : prehistoric way to do metadata in caps. is done via signals actually */ + /* reset media info (to default) */ gst_caps_replace (&mux->metadata, gst_caps_new_simple ("application/x-gst-metadata", |