diff options
author | Benjamin Otte <otte@gnome.org> | 2002-02-08 08:32:45 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2002-02-08 08:32:45 +0000 |
commit | 33c46913a12743210607a4181d11416548592a1a (patch) | |
tree | 67f663adec1c09a707071740d33004edf2032277 | |
parent | 679a728cc16edfe65035a43ddd8c60a9586aef1b (diff) | |
download | gst-plugins-bad-33c46913a12743210607a4181d11416548592a1a.tar.gz gst-plugins-bad-33c46913a12743210607a4181d11416548592a1a.tar.bz2 gst-plugins-bad-33c46913a12743210607a4181d11416548592a1a.zip |
bugfix: do Uraeus' job - no more //
Original commit message from CVS:
bugfix: do Uraeus' job - no more //
-rw-r--r-- | gst/mpegaudioparse/gstmp3types.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/mpegaudioparse/gstmp3types.c b/gst/mpegaudioparse/gstmp3types.c index 75391a0d..c0735cc5 100644 --- a/gst/mpegaudioparse/gstmp3types.c +++ b/gst/mpegaudioparse/gstmp3types.c @@ -75,7 +75,7 @@ mp3_typefind(GstBuffer *buf, gpointer private) return NULL; caps = gst_caps_new ("mp3_typefind", "audio/mp3", NULL); -// gst_caps_set(caps,"layer",GST_PROPS_INT(4-((head>>17)&0x3))); + /* gst_caps_set(caps,"layer",GST_PROPS_INT(4-((head>>17)&0x3))); */ return caps; } @@ -93,7 +93,7 @@ plugin_init (GModule *module, GstPlugin *plugin) i++; } -// gst_info("gsttypes: loaded %d mp3 types\n",i); + /* gst_info("gsttypes: loaded %d mp3 types\n",i); */ return TRUE; } |