diff options
Diffstat (limited to '4a-hal/4a-hal-controllers/4a-hal-controllers-value-handler.h')
-rw-r--r-- | 4a-hal/4a-hal-controllers/4a-hal-controllers-value-handler.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-value-handler.h b/4a-hal/4a-hal-controllers/4a-hal-controllers-value-handler.h index 5f91aaa..f976fe8 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-value-handler.h +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-value-handler.h @@ -15,8 +15,8 @@ * limitations under the License. */ -#ifndef _HAL_CTLS_VALUE_NORMALIZATION_INCLUDE_ -#define _HAL_CTLS_VALUE_NORMALIZATION_INCLUDE_ +#ifndef _HAL_CTLS_VALUE_CONVERSION_INCLUDE_ +#define _HAL_CTLS_VALUE_CONVERSION_INCLUDE_ #include <stdio.h> @@ -24,11 +24,21 @@ #include "4a-hal-controllers-alsacore-link.h" +// Enum for the type of conversion requested +enum ConversionType { + CONVERSION_NORMALIZED_TO_ALSACORE = 1, + CONVERSION_ALSACORE_TO_NORMALIZED = 2 +}; + // Simple conversion value to/from percentage functions int HalCtlsConvertValueToPercentage(double val, double min, double max); int HalCtlsConvertPercentageToValue(int percentage, int min, int max); // Convert json object from percentage to value -int HalCtlsNormalizeJsonValues(AFB_ApiT apiHandle, struct CtlHalAlsaCtlProperties *alsaCtlProperties, json_object *toConvertJ, json_object ** ConvertedJ); +int HalCtlsConvertJsonValues(AFB_ApiT apiHandle, + struct CtlHalAlsaCtlProperties *alsaCtlProperties, + json_object *toConvertJ, + json_object **ConvertedJ, + enum ConversionType requestedConversion); -#endif /* _HAL_CTLS_VALUE_NORMALIZATION_INCLUDE_ */
\ No newline at end of file +#endif /* _HAL_CTLS_VALUE_CONVERSION_INCLUDE_ */
\ No newline at end of file |