Fix comment end after SPDX identifier
[metze/wireshark/wip.git] / codecs / sbc / sbc_private.h
1 /* sbc.h
2  * Definitions for Bluetooth SBC codec
3  *
4  * Copyright 2012, Michal Labedzki for Tieto Corporation
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12
13 #ifndef __CODECS_SBC_H__
14 #define __CODECS_SBC_H__
15
16 void *codec_sbc_init(void);
17 void  codec_sbc_release(void *ctx);
18 unsigned codec_sbc_get_channels(void *ctx);
19 unsigned codec_sbc_get_frequency(void *ctx);
20 size_t codec_sbc_decode(void *ctx, const void *input, size_t inputSizeBytes, void *output,
21         size_t *outputSizeBytes);
22
23 #endif /* sbc.h */
24
25 /*
26  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
27  *
28  * Local variables:
29  * c-basic-offset: 4
30  * tab-width: 8
31  * indent-tabs-mode: nil
32  * End:
33  *
34  * vi: set shiftwidth=4 tabstop=8 expandtab:
35  * :indentSize=4:tabSize=8:noTabs=true:
36  */