summaryrefslogtreecommitdiff
path: root/modules/avcapture/avcapture.m
diff options
context:
space:
mode:
Diffstat (limited to 'modules/avcapture/avcapture.m')
-rw-r--r--modules/avcapture/avcapture.m8
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/avcapture/avcapture.m b/modules/avcapture/avcapture.m
index 8f07e7d..e037246 100644
--- a/modules/avcapture/avcapture.m
+++ b/modules/avcapture/avcapture.m
@@ -31,7 +31,7 @@ static struct vidsrc *vidsrc;
struct vidsrc_st {
- struct vidsrc *vs;
+ const struct vidsrc *vs;
avcap *cap;
vidsrc_frame_h *frameh;
void *arg;
@@ -289,12 +289,10 @@ static void destructor(void *arg)
waitUntilDone:YES];
[st->cap release];
-
- mem_deref(st->vs);
}
-static int alloc(struct vidsrc_st **stp, struct vidsrc *vs,
+static int 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,
@@ -319,7 +317,7 @@ static int alloc(struct vidsrc_st **stp, struct vidsrc *vs,
pool = [NSAutoreleasePool new];
- st->vs = mem_ref(vs);
+ st->vs = vs;
st->frameh = frameh;
st->arg = arg;