summaryrefslogtreecommitdiffstats
path: root/mm-audio
diff options
context:
space:
mode:
authorGarmond Leung <garmondl@codeaurora.org>2018-02-01 10:28:40 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2018-02-12 22:28:01 -0800
commit1a7c7f0d323ed52cb1f4510e76a88ae91f7c05e2 (patch)
tree05e1b50aad245074ca1ced7b8029bdc8b5d9b09f /mm-audio
parent466b25ee294d6b82cabe82ef1bf55a281f659b71 (diff)
downloadandroid_hardware_qcom_audio-1a7c7f0d323ed52cb1f4510e76a88ae91f7c05e2.tar.gz
android_hardware_qcom_audio-1a7c7f0d323ed52cb1f4510e76a88ae91f7c05e2.tar.bz2
android_hardware_qcom_audio-1a7c7f0d323ed52cb1f4510e76a88ae91f7c05e2.zip
hal: Update property name to reflect proper name convention
Update property name for qaf m8 library and g711 encoder to comply with Treble naming convention. CRs-Fixed: 2183365 Change-Id: Ieb2bf02ca70e44e2852e2dadf89b72d47941ca4d
Diffstat (limited to 'mm-audio')
-rw-r--r--mm-audio/aenc-g711/qdsp6/inc/omx_log.h4
-rw-r--r--mm-audio/aenc-g711/qdsp6/src/omx_log.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/mm-audio/aenc-g711/qdsp6/inc/omx_log.h b/mm-audio/aenc-g711/qdsp6/inc/omx_log.h
index 0080ccc1..070d485f 100644
--- a/mm-audio/aenc-g711/qdsp6/inc/omx_log.h
+++ b/mm-audio/aenc-g711/qdsp6/inc/omx_log.h
@@ -1,5 +1,5 @@
/*--------------------------------------------------------------------------
-Copyright (c) 2016, The Linux Foundation. All rights reserved.
+Copyright (c) 2016, 2018, The Linux Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
@@ -35,7 +35,7 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
using namespace std;
/*
- * Change logging-level at runtime with "persist.debug.omx.logs.level"
+ * Change logging-level at runtime with "persist.vendor.debug.omx.logs.level"
*
* level OMX_LOGV OMX_LOGD
* ----------------------------------
diff --git a/mm-audio/aenc-g711/qdsp6/src/omx_log.cpp b/mm-audio/aenc-g711/qdsp6/src/omx_log.cpp
index 39498be6..bc0f330d 100644
--- a/mm-audio/aenc-g711/qdsp6/src/omx_log.cpp
+++ b/mm-audio/aenc-g711/qdsp6/src/omx_log.cpp
@@ -1,5 +1,5 @@
/*--------------------------------------------------------------------------
-Copyright (c) 2016 The Linux Foundation. All rights reserved.
+Copyright (c) 2016, 2018, The Linux Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
@@ -40,7 +40,7 @@ uint32_t gOmxLogLevel;
void updateLogLevel() {
char level[PROPERTY_VALUE_MAX];
#ifdef ANDROID
- property_get("persist.debug.omx.logs.level", level, "0");
+ property_get("persist.vendor.debug.omx.logs.level", level, "0");
gOmxLogLevel = atoi(level);
#else
gOmxLogLevel = atoi("0");