]> sigrok.org Git - libsigrok.git/blobdiff - src/input/chronovu_la8.c
fx2lafw: Replace obsoleted strncmp() calls.
[libsigrok.git] / src / input / chronovu_la8.c
index 1d7e16adf10b96395db3d2dee0264e5918e773c0..c28f0e0a811b8afa43006ef86095ab231bbdedf0 100644 (file)
@@ -62,7 +62,7 @@ static int init(struct sr_input *in, GHashTable *options)
                return SR_ERR_ARG;
        }
 
-       in->sdi = sr_dev_inst_new(SR_ST_ACTIVE, NULL, NULL, NULL);
+       in->sdi = g_malloc0(sizeof(struct sr_dev_inst));
        in->priv = inc = g_malloc0(sizeof(struct context));
 
        inc->samplerate = g_variant_get_uint64(g_hash_table_lookup(options, "samplerate"));
@@ -109,7 +109,6 @@ static int process_buffer(struct sr_input *in)
        /* Cut off at multiple of unitsize. */
        chunk_size = in->buf->len / logic.unitsize * logic.unitsize;
 
-       chunk = 0;
        for (i = 0; i < chunk_size; i += chunk) {
                logic.data = in->buf->str + i;
                chunk = MIN(MAX_CHUNK_SIZE, chunk_size - i);
@@ -178,6 +177,7 @@ SR_PRIV struct sr_input_module input_chronovu_la8 = {
        .id = "chronovu-la8",
        .name = "Chronovu-LA8",
        .desc = "ChronoVu LA8",
+       .exts = (const char*[]){"kdt", NULL},
        .metadata = { SR_INPUT_META_FILESIZE | SR_INPUT_META_REQUIRED },
        .options = get_options,
        .format_match = format_match,