]> sigrok.org Git - libsigrok.git/blame - src/output/wav.c
output/wav: Initial module skeleton.
[libsigrok.git] / src / output / wav.c
CommitLineData
afaa75b9
BV
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2014 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "libsigrok.h"
21#include "libsigrok-internal.h"
22
23#define LOG_PREFIX "output/wav"
24
25static int init(struct sr_output *o, GHashTable *options)
26{
27 (void)o;
28 (void)options;
29
30 return SR_OK;
31}
32
33static int receive(const struct sr_output *o, const struct sr_datafeed_packet *packet,
34 GString **out)
35{
36 (void)o;
37 (void)packet;
38 (void)out;
39
40 return SR_OK;
41}
42
43static int cleanup(struct sr_output *o)
44{
45 (void)o;
46
47 return SR_OK;
48}
49
50SR_PRIV struct sr_output_module output_wav = {
51 .id = "wav",
52 .name = "WAV",
53 .desc = "WAVE PCM sound module",
54 .init = init,
55 .receive = receive,
56 .cleanup = cleanup,
57};
58