summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorXANTRONIX Development2022-02-28 13:09:14 -0500
committerXANTRONIX Development2022-02-28 13:09:14 -0500
commit1abc73e474f8811ade6a9573a8083fecfbfecc04 (patch)
treebe227755742e92161f8586cf4db0a8f3f5de1834 /src
parent3c6872ccab4dcddc6ab6df7d17df3394964a6e46 (diff)
downloadxas-1abc73e474f8811ade6a9573a8083fecfbfecc04.tar.gz
xas-1abc73e474f8811ade6a9573a8083fecfbfecc04.tar.bz2
xas-1abc73e474f8811ade6a9573a8083fecfbfecc04.zip
Add gain setting callback to xas_object
Diffstat (limited to 'src')
-rw-r--r--src/object.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/object.c b/src/object.c
index 55ea4af..f97deca 100644
--- a/src/object.c
+++ b/src/object.c
@@ -1,9 +1,13 @@
#include <xas/object.h>
int xas_object_start(xas_object *object) {
- object->start(object);
+ return object->start(object);
}
int xas_object_stop(xas_object *object) {
- object->stop(object);
+ return object->stop(object);
+}
+
+int xas_object_set_gain(xas_object *object, float gain) {
+ return object->set_gain(object, gain);
}