diff options
Diffstat (limited to 'audio/aidl/vts/VtsHalDynamicsProcessingTest.cpp')
-rw-r--r-- | audio/aidl/vts/VtsHalDynamicsProcessingTest.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/audio/aidl/vts/VtsHalDynamicsProcessingTest.cpp b/audio/aidl/vts/VtsHalDynamicsProcessingTest.cpp index ece07f0582..0b05b17e61 100644 --- a/audio/aidl/vts/VtsHalDynamicsProcessingTest.cpp +++ b/audio/aidl/vts/VtsHalDynamicsProcessingTest.cpp @@ -14,16 +14,16 @@ * limitations under the License. */ -#include <aidl/Vintf.h> - -#define LOG_TAG "VtsHalDynamicsProcessingTest" - #include <set> #include <string> -#include <unordered_map> #include <unordered_set> +#include <aidl/Vintf.h> +#define LOG_TAG "VtsHalDynamicsProcessingTest" +#include <android-base/logging.h> + #include <Utils.h> + #include "EffectHelper.h" using namespace android; @@ -45,7 +45,7 @@ class DynamicsProcessingTestHelper : public EffectHelper { int32_t channelLayOut = AudioChannelLayout::LAYOUT_STEREO) { std::tie(mFactory, mDescriptor) = pair; mChannelLayout = channelLayOut; - mChannelCount = ::android::hardware::audio::common::getChannelCount( + mChannelCount = ::aidl::android::hardware::audio::common::getChannelCount( AudioChannelLayout::make<AudioChannelLayout::layoutMask>(mChannelLayout)); } @@ -224,7 +224,7 @@ bool DynamicsProcessingTestHelper::isParamEqual(const DynamicsProcessing::Tag& t dpRef.get<DynamicsProcessing::inputGain>(), dpTest.get<DynamicsProcessing::inputGain>()); } - case DynamicsProcessing::vendorExtension: { + case DynamicsProcessing::vendor: { return false; } } |