3 * Definitions for routines for u-law, A-law and linear PCM conversions
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
15 #include "ws_symbol_export.h"
19 #endif /* __cplusplus */
21 WS_DLL_PUBLIC
unsigned char linear2alaw( int );
22 WS_DLL_PUBLIC
int alaw2linear( unsigned char );
23 WS_DLL_PUBLIC
unsigned char linear2ulaw( int );
24 WS_DLL_PUBLIC
int ulaw2linear( unsigned char );
28 #endif /* __cplusplus */
30 #endif /* __G711_H__ */