From 01efad2774b55dd956bbbed2ef2b1bdb5a113afd Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Mon, 18 Mar 2013 21:45:47 +0100 Subject: In ipecamera_stop wait until streaming user-thread is terminated --- ipecamera/ipecamera.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ipecamera/ipecamera.c b/ipecamera/ipecamera.c index 27bea77..4ba0e9e 100644 --- a/ipecamera/ipecamera.c +++ b/ipecamera/ipecamera.c @@ -575,7 +575,11 @@ int ipecamera_stop(pcilib_context_t *vctx, pcilib_event_flags_t flags) { pcilib_stop_dma(vctx->pcilib, ctx->rdma, PCILIB_DMA_FLAGS_DEFAULT); ctx->rdma = PCILIB_DMA_ENGINE_INVALID; } - + + while (ctx->streaming) { + usleep(IPECAMERA_NOFRAME_SLEEP); + } + if (ctx->ipedec) { ufo_decoder_free(ctx->ipedec); ctx->ipedec = NULL; -- cgit v1.2.3