Wireshark
2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
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
*/
Generated by
1.8.11