From e6528c39fe1a0607a5554a1813a1ee1f4e7adabb Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Tue, 15 Apr 2008 19:06:00 +0000 Subject: [PATCH] gst/audiotestsrc/gstaudiotestsrc.c: Remove cpp style commented old code. Original commit message from CVS: * gst/audiotestsrc/gstaudiotestsrc.c: Remove cpp style commented old code. --- ChangeLog | 5 +++++ gst/audiotestsrc/gstaudiotestsrc.c | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4fe28385ba..140e47a2de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-15 Stefan Kost + + * gst/audiotestsrc/gstaudiotestsrc.c: + Remove cpp style commented old code. + 2008-04-15 Stefan Kost * gst/playback/gstdecodebin2.c: diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index e70d6e98c1..323bf36d01 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -580,7 +580,6 @@ gst_audio_test_src_generate_pink_noise_value (GstPinkNoise * pink) * values together. Only one changes each time. */ pink->running_sum -= pink->rows[num_zeros]; - //new_random = ((glong)GenerateRandomNumber()) >> PINK_RANDOM_SHIFT; new_random = 32768.0 - (65536.0 * (gulong) rand () / (RAND_MAX + 1.0)); pink->running_sum += new_random; pink->rows[num_zeros] = new_random;