Move c/h files implementing/defining standard library stuff into a new libc directory...
[kugel-rb.git] / apps / codecs / libpcm / pcm_common.h
blob90e29c98eeb4713b230c9222f4b4c9116362d553
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2009 Yoshihisa Uchida
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifndef CODEC_LIBPCM_PCM_COMMON_H
22 #define CODEC_LIBPCM_PCM_COMMON_H
24 #include <stdbool.h>
25 #include <inttypes.h>
26 #include <string.h>
28 /* decoded pcm sample depth (sample 28bit + sign 1bit) */
29 #define PCM_OUTPUT_DEPTH 29
31 /* Macro that sign extends an unsigned byte */
32 #define SE(x) ((int32_t)((int8_t)(x)))
34 /* Macro that shift to -0x80. (0 .. 127 to -128 .. -1, 128 .. 255 to 0 .. 127) */
35 #define SFT(x) ((int32_t)x-0x80)
37 /* Macro that clipping data */
38 #define CLIP(data, min, max) \
39 if ((data) > (max)) data = max; \
40 else if ((data) < (min)) data = min;
42 /* nums of msadpcm coeffs
43 * In many case, nNumCoef is 7.
44 * Depending upon the encoder, as for this value there is a possibility
45 * of increasing more.
46 * If you found the file where this value exceeds 7, please report.
48 #define MSADPCM_NUM_COEFF 7
50 struct pcm_format {
52 * RIFF: wFormatTag (in 'fmt ' chunk)
53 * AIFF: compressionType (in 'COMM' chunk)
55 uint32_t formattag;
58 * RIFF: wChannels (in 'fmt ' chunk)
59 * AIFF: numChannels (in 'COMM' chunk)
61 uint16_t channels;
64 * RIFF: dwSamplesPerSec (in 'fmt ' chunk)
65 * AIFF: sampleRate (in 'COMM' chunk)
67 uint32_t samplespersec;
69 /* RIFF: dwAvgBytesPerSec (in 'fmt ' chunk) */
70 uint32_t avgbytespersec;
73 * RIFF: wBlockAlign (in 'fmt ' chunk)
74 * AIFF: blockSize (in 'SSND' chunk)
76 uint16_t blockalign;
79 * RIFF: wBitsPerSample (in 'fmt ' chunk)
80 * AIFF: sampleSize (in 'COMM' chunk)
82 uint16_t bitspersample;
84 /* RIFF: wSize (in 'fmt ' chunk) */
85 uint16_t size;
87 /* RIFF: dSamplesPerBlock (in 'fmt ' chunk) */
88 uint16_t samplesperblock;
90 /* RIFF: wTotalSamples (in 'fact' chunk) */
91 uint16_t totalsamples;
93 /* the following values are not RIFF/AIFF chunk values */
95 /* bytes per sample */
96 int bytespersample;
98 /* chunk size */
99 long chunksize;
101 /* data size */
102 uint32_t numbytes;
105 * data endian
106 * true: little endian, false: big endian
108 bool is_little_endian;
111 * data signess
112 * true: signed, false: unsigned
114 bool is_signed;
116 /* the following values are format speciffic parameters */
118 /* microsoft adpcm: aCoeff */
119 int16_t coeffs[MSADPCM_NUM_COEFF][2];
122 struct pcm_pos {
123 uint32_t pos;
124 uint32_t samples;
127 #define PCM_SEEK_TIME 0
128 #define PCM_SEEK_POS 1
130 struct pcm_codec {
132 * sets the format speciffic RIFF/AIFF header information and checks the pcm_format.
134 * [In/Out] format
135 * the structure which supplies RIFF/AIFF header information.
137 * return
138 * true: RIFF/AIFF header check OK
139 * false: RIFF/AIFF header check NG
141 bool (*set_format)(struct pcm_format *format);
144 * get seek position
146 * [In] seek_val
147 * seek time [ms] or seek position
149 * [In] seek_mode
150 * if seek_mode sets PCM_SEEK_TIME, then seek_val means the seek time.
151 * if seek_mode sets PCM_SEEK_POS, then seek_val means the seek position.
153 * [In] read_buffer
154 * the function which reads the data from the file (chunksize bytes read).
156 * return
157 * position after the seeking.
159 struct pcm_pos *(*get_seek_pos)(uint32_t seek_val, int seek_mode,
160 uint8_t *(*read_buffer)(size_t *realsize));
163 * decode wave data.
165 * [In] inbuf
166 * the start pointer of wave data buffer.
168 * [In] inbufsize
169 * wave data buffer size (bytes).
171 * [Out] outbuf
172 * the start pointer of the buffer which supplies decoded pcm data.
174 * [Out] outbufcount
175 * decoded pcm data count.
177 * return
178 * CODEC_OK: decode succeed.
179 * CODEC_ERROR: decode failure.
181 int (*decode)(const uint8_t *inbuf, size_t inbufsize,
182 int32_t *outbuf, int *outbufcount);
185 struct pcm_entry {
186 uint32_t format_tag;
187 const struct pcm_codec *(*get_codec)(void);
190 #endif