summaryrefslogtreecommitdiffstats
path: root/gst/wavparse/gstriff.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/wavparse/gstriff.c')
-rw-r--r--gst/wavparse/gstriff.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/wavparse/gstriff.c b/gst/wavparse/gstriff.c
index d343568c..2e511cc0 100644
--- a/gst/wavparse/gstriff.c
+++ b/gst/wavparse/gstriff.c
@@ -56,7 +56,7 @@ gint gst_riff_next_buffer(GstRiff *riff,GstBuffer *buf,gulong off) {
return riff->state;
}
riff->form = words[2];
-// g_print("form is 0x%08x '%s'\n",words[2],gst_riff_id_to_fourcc(words[2]));
+/* g_print("form is 0x%08x '%s'\n",words[2],gst_riff_id_to_fourcc(words[2])); */
riff->nextlikely = 12; /* skip 'RIFF', length, and form */
}
@@ -64,14 +64,14 @@ gint gst_riff_next_buffer(GstRiff *riff,GstBuffer *buf,gulong off) {
while ((riff->nextlikely+8) < last) {
gulong *words = (gulong *)((guchar *)GST_BUFFER_DATA(buf) + riff->nextlikely);
-// g_print("next likely chunk is at offset 0x%08x\n",riff->nextlikely);
+/* g_print("next likely chunk is at offset 0x%08x\n",riff->nextlikely); */
chunk = (GstRiffChunk *)malloc(sizeof(GstRiffChunk));
g_return_val_if_fail(chunk != NULL,0);
chunk->offset = riff->nextlikely+8; /* point to the actual data */
chunk->id = words[0];
chunk->size = words[1];
-// g_print("chunk id is 0x%08x '%s' and is 0x%08x long\n",words[0],
-// gst_riff_id_to_fourcc(words[0]),words[1]);
+/* g_print("chunk id is 0x%08x '%s' and is 0x%08x long\n",words[0], */
+/* gst_riff_id_to_fourcc(words[0]),words[1]); */
riff->nextlikely += 8 + chunk->size; /* doesn't include hdr */
riff->chunks = g_list_prepend(riff->chunks,chunk);
}