summaryrefslogtreecommitdiff
path: root/modules/vidbridge/src.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/vidbridge/src.c')
-rw-r--r--modules/vidbridge/src.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/vidbridge/src.c b/modules/vidbridge/src.c
index ff9bf70..5e7d08a 100644
--- a/modules/vidbridge/src.c
+++ b/modules/vidbridge/src.c
@@ -18,11 +18,10 @@ static void destructor(void *arg)
list_unlink(&st->le);
mem_deref(st->device);
- mem_deref(st->vs);
}
-int vidbridge_src_alloc(struct vidsrc_st **stp, struct vidsrc *vs,
+int vidbridge_src_alloc(struct vidsrc_st **stp, const struct vidsrc *vs,
struct media_ctx **ctx, struct vidsrc_prm *prm,
const struct vidsz *size, const char *fmt,
const char *dev, vidsrc_frame_h *frameh,
@@ -42,7 +41,7 @@ int vidbridge_src_alloc(struct vidsrc_st **stp, struct vidsrc *vs,
if (!st)
return ENOMEM;
- st->vs = mem_ref(vs);
+ st->vs = vs;
st->frameh = frameh;
st->arg = arg;