-
Notifications
You must be signed in to change notification settings - Fork 11
modules: Add PoplessEqualizer module #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
fwk/spf/apm/ext/proxy/proxy_vcpm/vcpm/build/CMakeLists.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| #[[ | ||
| @file CMakeLists.txt | ||
|
|
||
| @brief | ||
|
|
||
| @copyright | ||
| Copyright (c) Qualcomm Innovation Center, Inc. All Rights Reserved. | ||
| SPDX-License-Identifier: BSD-3-Clause-Clear | ||
|
|
||
| ]] | ||
| cmake_minimum_required(VERSION 3.10) | ||
|
|
||
| #add source and header files | ||
| set (lib_srcs_list | ||
| ${LIB_ROOT}/stub_src/vcpm.c | ||
| ) | ||
|
|
||
| set (lib_incs_list | ||
| ${LIB_ROOT}/inc | ||
| ) | ||
|
|
||
| #Call spf_build_static_library to generate the static library | ||
| spf_build_static_library(vcpm | ||
| "${lib_incs_list}" | ||
| "${lib_srcs_list}" | ||
| "${lib_defs_list}" | ||
| "${lib_flgs_list}" | ||
| "${lib_link_libs_list}" | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| #ifndef _VCPM_H_ | ||
| #define _VCPM_H_ | ||
|
|
||
| /** | ||
| * \file vcpm.h | ||
| * \brief | ||
| * This file contains declarations of the VCPM public API's | ||
| * | ||
| * | ||
| * \copyright | ||
| * Copyright (c) Qualcomm Innovation Center, Inc. All Rights Reserved. | ||
| * SPDX-License-Identifier: BSD-3-Clause-Clear | ||
| */ | ||
|
|
||
| #include "ar_error_codes.h" | ||
|
|
||
| #ifdef __cplusplus | ||
| extern "C" { | ||
| #endif /*__cplusplus*/ | ||
|
|
||
| /*============================================================================== | ||
| Public Function definitions | ||
| ==============================================================================*/ | ||
|
|
||
| /** Creates the command handler thread for the VCPM. | ||
|
|
||
| return: on success, or error code otherwise. | ||
|
|
||
| */ | ||
| ar_result_t vcpm_create(); | ||
|
|
||
| /** Destroys the VCPM command handler thread and clean up | ||
| resources. | ||
|
|
||
| return: None | ||
| */ | ||
|
|
||
| void vcpm_destroy(); | ||
|
|
||
| ar_result_t vcpm_get_spf_handle(spf_handle_t **spf_handle_pptr); | ||
|
|
||
| #ifdef __cplusplus | ||
| } | ||
| #endif /*__cplusplus*/ | ||
|
|
||
| #endif /* #ifdef _VCPM_H_ */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| /** | ||
| * \file vcpm.c | ||
| * \brief | ||
| * This file contains VCPM Module Implementation | ||
| * | ||
| * | ||
| * \copyright | ||
| * Copyright (c) Qualcomm Innovation Center, Inc. All Rights Reserved. | ||
| * SPDX-License-Identifier: BSD-3-Clause-Clear | ||
| */ | ||
|
|
||
| #include "spf_utils.h" | ||
|
|
||
| /**========================================================================= | ||
| Global Defines | ||
| ===========================================================================*/ | ||
| ar_result_t vcpm_create() | ||
| { | ||
| //return AR_EUNSUPPORTED; | ||
| return AR_EOK; | ||
| } | ||
|
|
||
| void vcpm_destroy() | ||
| { | ||
| return; | ||
| } | ||
|
|
||
| ar_result_t vcpm_get_spf_handle(spf_handle_t **spf_handle_pptr) | ||
| { | ||
| return AR_EUNSUPPORTED; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just stub. Can we name vcpm_stub.c to be consistent? Also, remember to update the comment indicating it is stub implementation