summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2011-12-16 17:20:51 +0100
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2011-12-19 17:44:55 +0100
commitf06d7416333a6912f5f6661a2abe0025980bf03f (patch)
treeafd3ba3911dee5021781b060edd991ff48e2b92f
parent06267242629e2912dd2ca56efc03d95486ce6a23 (diff)
matroskamux: bring a few debug statements up to specs
... and minor spelling fix.
-rw-r--r--gst/matroska/matroska-mux.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c
index 65b31eabf..f454247af 100644
--- a/gst/matroska/matroska-mux.c
+++ b/gst/matroska/matroska-mux.c
@@ -2383,7 +2383,7 @@ gst_matroska_mux_start (GstMatroskaMux * mux)
if (tags != NULL && !gst_tag_list_is_empty (tags)) {
guint64 master_tags, master_tag;
- GST_DEBUG ("Writing tags");
+ GST_DEBUG_OBJECT (mux, "Writing tags");
/* TODO: maybe limit via the TARGETS id by looking at the source pad */
mux->tags_pos = ebml->pos;
@@ -2458,7 +2458,7 @@ gst_matroska_mux_start (GstMatroskaMux * mux)
child = gst_ebml_write_master_start (ebml, GST_MATROSKA_ID_TRACKENTRY);
gst_matroska_mux_track_header (mux, collect_pad->track);
gst_ebml_write_master_finish (ebml, child);
- /* some remaing pad/track setup */
+ /* some remaining pad/track setup */
collect_pad->default_duration_scaled =
gst_util_uint64_scale (collect_pad->track->default_duration,
1, mux->time_scale);
@@ -2585,7 +2585,7 @@ gst_matroska_mux_finish (GstMatroskaMux * mux)
if (tags != NULL && !gst_tag_list_is_empty (tags)) {
guint64 master_tags, master_tag;
- GST_DEBUG ("Writing tags");
+ GST_DEBUG_OBJECT (mux, "Writing tags");
/* TODO: maybe limit via the TARGETS id by looking at the source pad */
mux->tags_pos = ebml->pos;