aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/opcodes.cpp28
1 files changed, 19 insertions, 9 deletions
diff --git a/src/opcodes.cpp b/src/opcodes.cpp
index 31a1047..9e95508 100644
--- a/src/opcodes.cpp
+++ b/src/opcodes.cpp
@@ -120,11 +120,23 @@ struct shoutinit : csnd::Plugin<1, 5> {
}
};
+void close_session(ShoutSession* session) {
+ if (session->open) {
+ shout_close(session->shout);
+ session->open = false;
+ }
+ if (session->meta != NULL) {
+ shout_metadata_free(session->meta);
+ session->meta = NULL;
+ }
+}
+
struct shoutopen : csnd::InPlug<1> {
ARGO = "";
ARGI = "i";
+ ShoutSession* session;
int init() {
- ShoutSession* session;
+ csound->plugin_deinit(this);
if (!(session = getHandle<ShoutSession>(csound, args[0], handleName))) {
return csound->init_error("Invalid shout session handle");
}
@@ -138,6 +150,11 @@ struct shoutopen : csnd::InPlug<1> {
session->open = true;
return OK;
}
+
+ int deinit() {
+ close_session(session);
+ return OK;
+ }
};
struct shoutclose : csnd::InPlug<1> {
@@ -148,14 +165,7 @@ struct shoutclose : csnd::InPlug<1> {
if (!(session = getHandle<ShoutSession>(csound, args[0], handleName))) {
return csound->init_error("Invalid shout session handle");
}
- if (session->open) {
- shout_close(session->shout);
- session->open = false;
- }
- if (session->meta != NULL) {
- shout_metadata_free(session->meta);
- session->meta = NULL;
- }
+ close_session(session);
return OK;
}
};