]> sigrok.org Git - libsigrok.git/blobdiff - src/input/binary.c
input: Added preferred file extension field
[libsigrok.git] / src / input / binary.c
index 5862e36e24799d473357dde7f02670d029e1b4cb..f9e49de17cb84d766b5a59601c569cb490957050 100644 (file)
@@ -50,7 +50,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"));
@@ -97,7 +97,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);
@@ -166,6 +165,7 @@ SR_PRIV struct sr_input_module input_binary = {
        .id = "binary",
        .name = "Binary",
        .desc = "Raw binary",
+       .exts = NULL,
        .options = get_options,
        .init = init,
        .receive = receive,