From ee6e9ee81e1f6b339585652092abba1dc63de68c Mon Sep 17 00:00:00 2001
From: Ken Cooke <ken@highfidelity.io>
Date: Fri, 13 Apr 2018 10:36:13 -0700
Subject: [PATCH] Remove dead code left over from Gverb

---
 cmake/modules/FindGverb.cmake                 | 25 -----------
 script-archive/example/audio/audioReverbOn.js | 43 -------------------
 2 files changed, 68 deletions(-)
 delete mode 100644 cmake/modules/FindGverb.cmake
 delete mode 100644 script-archive/example/audio/audioReverbOn.js

diff --git a/cmake/modules/FindGverb.cmake b/cmake/modules/FindGverb.cmake
deleted file mode 100644
index 0c149a7ca1..0000000000
--- a/cmake/modules/FindGverb.cmake
+++ /dev/null
@@ -1,25 +0,0 @@
-#  FindGVerb.cmake
-# 
-#  Try to find the Gverb library.
-#
-#  You must provide a GVERB_ROOT_DIR which contains src and include directories
-#
-#  Once done this will define
-#
-#  GVERB_FOUND - system found Gverb
-#  GVERB_INCLUDE_DIRS - the Gverb include directory
-#
-#  Copyright 2014 High Fidelity, Inc.
-#
-#  Distributed under the Apache License, Version 2.0.
-#  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
-#
-
-include("${MACRO_DIR}/HifiLibrarySearchHints.cmake")
-hifi_library_search_hints("gverb")
-
-find_path(GVERB_INCLUDE_DIRS gverb.h PATH_SUFFIXES include HINTS ${GVERB_SEARCH_DIRS})
-find_library(GVERB_LIBRARIES gverb PATH_SUFFIXES lib HINTS ${GVERB_SEARCH_DIRS})
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(Gverb DEFAULT_MSG GVERB_INCLUDE_DIRS GVERB_LIBRARIES)
\ No newline at end of file
diff --git a/script-archive/example/audio/audioReverbOn.js b/script-archive/example/audio/audioReverbOn.js
deleted file mode 100644
index 72f2fa97bc..0000000000
--- a/script-archive/example/audio/audioReverbOn.js
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-//  audioReverbOn.js
-//  examples
-//
-//  Copyright 2014 High Fidelity, Inc.
-//
-//
-//  Gives the ability to be set various reverb settings.
-//
-//
-//  Distributed under the Apache License, Version 2.0.
-//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
-
-// http://wiki.audacityteam.org/wiki/GVerb#Instant_reverb_settings
-var audioOptions = new AudioEffectOptions({
-                                          // Square Meters
-                                          maxRoomSize: 50,
-                                          roomSize: 50,
-                                          
-                                          // Seconds
-                                          reverbTime: 10,
-                                          
-                                          // Between 0 - 1
-                                          damping: 0.50,
-                                          inputBandwidth: 0.75,
-                                          
-                                          // dB
-                                          earlyLevel: -22,
-                                          tailLevel: -28,
-                                          dryLevel: 0,
-                                          wetLevel: 6
-});
-
-AudioDevice.setReverbOptions(audioOptions);
-AudioDevice.setReverb(true);
-print("Reverb is now on with the updated options.");
-
-function scriptEnding() {
-    AudioDevice.setReverb(false);
-    print("Reberb is now off.");
-}
-
-Script.scriptEnding.connect(scriptEnding);
\ No newline at end of file