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.
This commit is contained in:
Stefan Kost 2008-04-15 19:06:00 +00:00
parent 0d3c154ccf
commit e6528c39fe
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-04-15 Stefan Kost <ensonic@users.sf.net>
* gst/audiotestsrc/gstaudiotestsrc.c:
Remove cpp style commented old code.
2008-04-15 Stefan Kost <ensonic@users.sf.net>
* gst/playback/gstdecodebin2.c:

View file

@ -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;