summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorqctecmdr <qctecmdr@localhost>2019-11-13 07:14:52 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2019-11-13 07:14:52 -0800
commitea151b86e733378d54019a8b816680d8375c4f42 (patch)
tree16319c4781bfbd9c273eef4d40f9c59094680566
parent64e3fd3ae12b1de8b0171f0c130bfbf609e1b82e (diff)
parent77baae8d5987ecbd832101e76ccfb97e868dea12 (diff)
downloadmsm-extra-ea151b86e733378d54019a8b816680d8375c4f42.tar.gz
Merge "dsp: voice: Add support for CVD version 2.4"
-rw-r--r--dsp/q6voice.c1
-rw-r--r--include/dsp/q6voice.h4
2 files changed, 4 insertions, 1 deletions
diff --git a/dsp/q6voice.c b/dsp/q6voice.c
index 8b6a4d78..2fb26372 100644
--- a/dsp/q6voice.c
+++ b/dsp/q6voice.c
@@ -56,6 +56,7 @@ struct cvd_version_table cvd_version_table_mapping[CVD_INT_VERSION_MAX] = {
{CVD_VERSION_2_1, CVD_INT_VERSION_2_1},
{CVD_VERSION_2_2, CVD_INT_VERSION_2_2},
{CVD_VERSION_2_3, CVD_INT_VERSION_2_3},
+ {CVD_VERSION_2_4, CVD_INT_VERSION_2_4},
};
static struct common_data common;
diff --git a/include/dsp/q6voice.h b/include/dsp/q6voice.h
index 7515e0f3..27f5d2e4 100644
--- a/include/dsp/q6voice.h
+++ b/include/dsp/q6voice.h
@@ -44,13 +44,15 @@
#define CVD_VERSION_2_1 "2.1"
#define CVD_VERSION_2_2 "2.2"
#define CVD_VERSION_2_3 "2.3"
+#define CVD_VERSION_2_4 "2.4"
#define CVD_INT_VERSION_DEFAULT 0
#define CVD_INT_VERSION_0_0 1
#define CVD_INT_VERSION_2_1 2
#define CVD_INT_VERSION_2_2 3
#define CVD_INT_VERSION_2_3 4
-#define CVD_INT_VERSION_LAST CVD_INT_VERSION_2_3
+#define CVD_INT_VERSION_2_4 5
+#define CVD_INT_VERSION_LAST CVD_INT_VERSION_2_4
#define CVD_INT_VERSION_MAX (CVD_INT_VERSION_LAST + 1)
struct cvd_version_table {