intpcm.h revision 331722
1/*-
2 * Copyright (c) 2008-2009 Ariff Abdullah <ariff@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: stable/11/sys/dev/sound/pcm/intpcm.h 331722 2018-03-29 02:50:57Z eadler $
27 */
28
29#ifndef _SND_INTPCM_H_
30#define _SND_INTPCM_H_
31
32typedef intpcm_t intpcm_read_t(uint8_t *);
33typedef void intpcm_write_t(uint8_t *, intpcm_t);
34
35extern intpcm_read_t *feeder_format_read_op(uint32_t);
36extern intpcm_write_t *feeder_format_write_op(uint32_t);
37
38#define INTPCM_DECLARE_OP_WRITE(SIGN, BIT, ENDIAN, SHIFT)		\
39static __inline void							\
40intpcm_write_##SIGN##BIT##ENDIAN(uint8_t *dst, intpcm_t v)		\
41{									\
42									\
43	_PCM_WRITE_##SIGN##BIT##_##ENDIAN(dst, v >> SHIFT);		\
44}
45
46#define INTPCM_DECLARE_OP_8(SIGN, ENDIAN)				\
47static __inline intpcm_t						\
48intpcm_read_##SIGN##8##ENDIAN(uint8_t *src)				\
49{									\
50									\
51	return (_PCM_READ_##SIGN##8##_##ENDIAN(src) << 24);		\
52}									\
53INTPCM_DECLARE_OP_WRITE(SIGN, 8, ENDIAN, 24)
54
55#define INTPCM_DECLARE_OP_16(SIGN, ENDIAN)				\
56static __inline intpcm_t						\
57intpcm_read_##SIGN##16##ENDIAN(uint8_t *src)				\
58{									\
59									\
60	return (_PCM_READ_##SIGN##16##_##ENDIAN(src) << 16);		\
61}									\
62INTPCM_DECLARE_OP_WRITE(SIGN, 16, ENDIAN, 16)
63
64#define INTPCM_DECLARE_OP_24(SIGN, ENDIAN)				\
65static __inline intpcm_t						\
66intpcm_read_##SIGN##24##ENDIAN(uint8_t *src)				\
67{									\
68									\
69	return (_PCM_READ_##SIGN##24##_##ENDIAN(src) << 8);		\
70}									\
71INTPCM_DECLARE_OP_WRITE(SIGN, 24, ENDIAN, 8)
72
73#define INTPCM_DECLARE_OP_32(SIGN, ENDIAN)				\
74static __inline intpcm_t						\
75intpcm_read_##SIGN##32##ENDIAN(uint8_t *src)				\
76{									\
77									\
78	return (_PCM_READ_##SIGN##32##_##ENDIAN(src));			\
79}									\
80									\
81static __inline void							\
82intpcm_write_##SIGN##32##ENDIAN(uint8_t *dst, intpcm_t v)		\
83{									\
84									\
85	_PCM_WRITE_##SIGN##32##_##ENDIAN(dst, v);			\
86}
87
88
89#define INTPCM_DECLARE(t)						\
90									\
91G711_DECLARE_TABLE(t);							\
92									\
93static __inline intpcm_t						\
94intpcm_read_ulaw(uint8_t *src)						\
95{									\
96									\
97	return (_G711_TO_INTPCM((t).ulaw_to_u8, *src) << 24);		\
98}									\
99									\
100static __inline intpcm_t						\
101intpcm_read_alaw(uint8_t *src)						\
102{									\
103									\
104	return (_G711_TO_INTPCM((t).alaw_to_u8, *src) << 24);		\
105}									\
106									\
107static __inline void							\
108intpcm_write_ulaw(uint8_t *dst, intpcm_t v)				\
109{									\
110									\
111	*dst = _INTPCM_TO_G711((t).u8_to_ulaw, v >> 24);		\
112}									\
113									\
114static __inline void							\
115intpcm_write_alaw(uint8_t *dst, intpcm_t v)				\
116{									\
117									\
118	*dst = _INTPCM_TO_G711((t).u8_to_alaw, v >> 24);		\
119}									\
120									\
121INTPCM_DECLARE_OP_8(S, NE)						\
122INTPCM_DECLARE_OP_16(S, LE)						\
123INTPCM_DECLARE_OP_16(S, BE)						\
124INTPCM_DECLARE_OP_24(S, LE)						\
125INTPCM_DECLARE_OP_24(S, BE)						\
126INTPCM_DECLARE_OP_32(S, LE)						\
127INTPCM_DECLARE_OP_32(S, BE)						\
128INTPCM_DECLARE_OP_8(U,  NE)						\
129INTPCM_DECLARE_OP_16(U, LE)						\
130INTPCM_DECLARE_OP_16(U, BE)						\
131INTPCM_DECLARE_OP_24(U, LE)						\
132INTPCM_DECLARE_OP_24(U, BE)						\
133INTPCM_DECLARE_OP_32(U, LE)						\
134INTPCM_DECLARE_OP_32(U, BE)
135
136#endif	/* !_SND_INTPCM_H_ */
137