From: Benjamin Otte Date: Fri, 8 Feb 2002 08:32:45 +0000 (+0000) Subject: bugfix: do Uraeus' job - no more // X-Git-Tag: 1.19.3~505^2~5159 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7e30017dfb13f15fbe05c7228d0d5a5c76b50ac;p=platform%2Fupstream%2Fgstreamer.git bugfix: do Uraeus' job - no more // Original commit message from CVS: bugfix: do Uraeus' job - no more // --- diff --git a/gst/mpegaudioparse/gstmp3types.c b/gst/mpegaudioparse/gstmp3types.c index 75391a0..c0735cc 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; }