summaryrefslogtreecommitdiffstats
path: root/ipecamera/data.c
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@dside.dyndns.org>2012-07-24 23:37:22 +0200
committerSuren A. Chilingaryan <csa@dside.dyndns.org>2012-07-24 23:37:22 +0200
commite97510491597e7f5abd7d0c822fde060d22e15cb (patch)
treea70a2230e37fb20cccd54bbf4dc36112e13338a7 /ipecamera/data.c
parent94051a28c0cd484e47b115f4251fa42d0edba7e5 (diff)
downloadpcitool-e97510491597e7f5abd7d0c822fde060d22e15cb.tar.gz
pcitool-e97510491597e7f5abd7d0c822fde060d22e15cb.tar.bz2
pcitool-e97510491597e7f5abd7d0c822fde060d22e15cb.tar.xz
pcitool-e97510491597e7f5abd7d0c822fde060d22e15cb.zip
Pass through the ipecamera metadata
Diffstat (limited to 'ipecamera/data.c')
-rw-r--r--ipecamera/data.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ipecamera/data.c b/ipecamera/data.c
index d753d43..ab3f483 100644
--- a/ipecamera/data.c
+++ b/ipecamera/data.c
@@ -38,7 +38,6 @@ inline static int ipecamera_decode_frame(ipecamera_t *ctx, pcilib_event_id_t eve
int err = 0;
size_t res;
uint16_t *pixels;
- UfoDecoderMeta meta;
int buf_ptr = ipecamera_resolve_event_id(ctx, event_id);
if (buf_ptr < 0) return PCILIB_ERROR_TIMEOUT;
@@ -54,7 +53,7 @@ inline static int ipecamera_decode_frame(ipecamera_t *ctx, pcilib_event_id_t eve
pixels = ctx->image + buf_ptr * ctx->image_size;
memset(ctx->cmask + ctx->buffer_pos * ctx->dim.height, 0, ctx->dim.height * sizeof(ipecamera_change_mask_t));
- res = ufo_decoder_decode_frame(ctx->ipedec, ctx->buffer + buf_ptr * ctx->padded_size, ctx->raw_size, pixels, &meta);
+ res = ufo_decoder_decode_frame(ctx->ipedec, ctx->buffer + buf_ptr * ctx->padded_size, ctx->raw_size, pixels, &ctx->frame[buf_ptr].event.meta);
if (!res) {
ctx->frame[buf_ptr].event.image_broken = 1;
err = PCILIB_ERROR_FAILED;