Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf1d5c3b authored by Dhanalakshmi Siddani's avatar Dhanalakshmi Siddani
Browse files

audio: Fix compile errors in FFV

Resolve ffv compile error by correcting ffv config file path name.

CRs-Fixed: 2225936
Change-Id: I692f1d6cbbe052f0636d80175af0e132462b6209
parent 30e06a26
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -60,14 +60,14 @@
#define AUDIO_PARAMETER_FFV_CHANNEL_INDEX "ffv_channel_index"

#if LINUX_ENABLED
#define ST_FFV_CONFIG_FILE_PATH "/etc/BF_1out.cfg"
#define FFV_CONFIG_FILE_PATH "/etc/BF_1out.cfg"
#ifdef __LP64__
#define FFV_LIB "/usr/lib64/libffv.so"
#else
#define FFV_LIB "/usr/lib/libffv.so"
#endif
#else
#define ST_FFV_CONFIG_FILE_PATH "/vendor/etc/BF_1out.cfg"
#define FFV_CONFIG_FILE_PATH "/vendor/etc/BF_1out.cfg"
#ifdef __LP64__
#define FFV_LIB "/vendor/lib64/libffv.so"
#else