aboutsummaryrefslogtreecommitdiffstats
path: root/formats/format_vox.c
diff options
context:
space:
mode:
Diffstat (limited to 'formats/format_vox.c')
-rw-r--r--formats/format_vox.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/formats/format_vox.c b/formats/format_vox.c
index b1f7e688a..8e5220143 100644
--- a/formats/format_vox.c
+++ b/formats/format_vox.c
@@ -121,8 +121,6 @@ static off_t vox_tell(struct ast_filestream *fs)
return offset;
}
-static struct ast_format_lock me = { .usecnt = -1 };
-
static const struct ast_format vox_f = {
.name = "vox",
.exts = "vox",
@@ -133,30 +131,27 @@ static const struct ast_format vox_f = {
.tell = vox_tell,
.read = vox_read,
.buf_size = BUF_SIZE + AST_FRIENDLY_OFFSET,
- .lockp = &me,
+ .module = &mod_data, /* XXX */
};
-int load_module()
+static int load_module(void *mod)
{
return ast_format_register(&vox_f);
}
-int unload_module()
+static int unload_module(void *mod)
{
return ast_format_unregister(vox_f.name);
}
-int usecount()
-{
- return me.usecnt;
-}
-
-const char *description()
+static const char *description(void)
{
return "Dialogic VOX (ADPCM) File Format";
}
-const char *key()
+static const char *key(void)
{
return ASTERISK_GPL_KEY;
}
+
+STD_MOD1;