]> sigrok.org Git - libsigrok.git/commitdiff
Input/wav: Add reset() function
authorSoeren Apel <redacted>
Mon, 2 May 2016 16:17:34 +0000 (18:17 +0200)
committerUwe Hermann <redacted>
Mon, 9 May 2016 11:02:47 +0000 (13:02 +0200)
src/input/wav.c

index a887fb743396e57ae83d3ecfd1707f83a0b76c89..0f56a4ad570c195f8f02b12eaeca8dae5e3c43af 100644 (file)
@@ -356,6 +356,16 @@ static int end(struct sr_input *in)
        return ret;
 }
 
+static int reset(struct sr_input *in)
+{
+       struct context *inc = in->priv;
+
+       inc->started = FALSE;
+       g_string_truncate(in->buf, 0);
+
+       return SR_OK;
+}
+
 SR_PRIV struct sr_input_module input_wav = {
        .id = "wav",
        .name = "WAV",
@@ -366,4 +376,5 @@ SR_PRIV struct sr_input_module input_wav = {
        .init = init,
        .receive = receive,
        .end = end,
+       .reset = reset,
 };