OSDN Git Service

Rename audio_utils/conversion.h to mono_blend.h
authorGlenn Kasten <gkasten@google.com>
Fri, 24 Feb 2017 00:55:16 +0000 (16:55 -0800)
committerTri Vo <trong@google.com>
Mon, 26 Jun 2017 16:21:39 +0000 (09:21 -0700)
There is only one function declared in that header file, and it is
mono_blend, so a more specific filename may be easier to understand.

Test: compiles OK
Merged-In: Ie2aec6c706b1822581b34d3702818b8200a1db8a
Change-Id: Ie2aec6c706b1822581b34d3702818b8200a1db8a
(cherry picked from commit 66c7057547bbbae28704a014a64068a5a6625a48)

audio_utils/Android.bp
audio_utils/include/audio_utils/mono_blend.h [moved from audio_utils/include/audio_utils/conversion.h with 100% similarity]
audio_utils/mono_blend.cpp [moved from audio_utils/conversion.cpp with 96% similarity]

index 486fee8..abec881 100644 (file)
@@ -36,7 +36,7 @@ cc_library {
     target: {
         android: {
             srcs: [
-                "conversion.cpp",
+                "mono_blend.cpp",
                 "resampler.c",
                 "echo_reference.c",
             ],
similarity index 96%
rename from audio_utils/conversion.cpp
rename to audio_utils/mono_blend.cpp
index a2d931f..933ccf8 100644 (file)
  */
 
 //#define LOG_NDEBUG 0
-#define LOG_TAG "audio_utils_conversion"
+#define LOG_TAG "audio_utils_mono_blend"
 
 #include <math.h>
-#include <audio_utils/conversion.h>
+#include <audio_utils/mono_blend.h>
 #include <utils/Log.h>
 #include <audio_utils/limiter.h>