summaryrefslogtreecommitdiffstats
path: root/gst/law/mulaw-decode.c
diff options
context:
space:
mode:
authorChristian Schaller <uraeus@gnome.org>2002-01-19 15:02:09 +0000
committerChristian Schaller <uraeus@gnome.org>2002-01-19 15:02:09 +0000
commitf14fcbf8968c7fafa3a7d515df6b1cc1f76e17cc (patch)
treefb690d9cc093396b5b9e36f2c3824a3e994aa454 /gst/law/mulaw-decode.c
parentfb03befba944ab4d8dedcf12cf12027a733cfb82 (diff)
A new batch of // fixes
Original commit message from CVS: A new batch of // fixes
Diffstat (limited to 'gst/law/mulaw-decode.c')
-rw-r--r--gst/law/mulaw-decode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/law/mulaw-decode.c b/gst/law/mulaw-decode.c
index 8e27c8fc..5e485a33 100644
--- a/gst/law/mulaw-decode.c
+++ b/gst/law/mulaw-decode.c
@@ -1,4 +1,4 @@
-/* Gnome-Streamer
+/* GStreamer
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
*
* This library is free software; you can redistribute it and/or
@@ -44,7 +44,7 @@ static void gst_mulawdec_chain (GstPad *pad, GstBuffer *buf);
static GstElementClass *parent_class = NULL;
-//static guint gst_stereo_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_stereo_signals[LAST_SIGNAL] = { 0 };*/
/*
static GstPadNegotiateReturn
@@ -116,7 +116,7 @@ gst_mulawdec_init (GstMuLawDec *mulawdec)
{
mulawdec->sinkpad = gst_pad_new_from_template(mulawdec_sink_template,"sink");
mulawdec->srcpad = gst_pad_new_from_template(mulawdec_src_template,"src");
- //gst_pad_set_negotiate_function(mulawdec->sinkpad, mulawdec_negotiate_sink);
+ /*gst_pad_set_negotiate_function(mulawdec->sinkpad, mulawdec_negotiate_sink);*/
gst_element_add_pad(GST_ELEMENT(mulawdec),mulawdec->sinkpad);
gst_pad_set_chain_function(mulawdec->sinkpad,gst_mulawdec_chain);