comparison mlp.h @ 7559:fd24c8628221 libavcodec

mlp: Split common code from parser and decoder to be used by encoder.
author ramiro
date Wed, 13 Aug 2008 18:47:03 +0000
parents
children 0dc289443426
comparison
equal deleted inserted replaced
7558:aa55cb6a440d 7559:fd24c8628221
1 /*
2 * MLP codec common header file
3 * Copyright (c) 2007-2008 Ian Caulfield
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef FFMPEG_MLP_H
23 #define FFMPEG_MLP_H
24
25 #include <stdint.h>
26
27 #include "avcodec.h"
28
29 /** Maximum number of channels that can be decoded. */
30 #define MAX_CHANNELS 16
31
32 /** Maximum number of matrices used in decoding; most streams have one matrix
33 * per output channel, but some rematrix a channel (usually 0) more than once.
34 */
35
36 #define MAX_MATRICES 15
37
38 /** Maximum number of substreams that can be decoded. This could also be set
39 * higher, but I haven't seen any examples with more than two. */
40 #define MAX_SUBSTREAMS 2
41
42 /** maximum sample frequency seen in files */
43 #define MAX_SAMPLERATE 192000
44
45 /** maximum number of audio samples within one access unit */
46 #define MAX_BLOCKSIZE (40 * (MAX_SAMPLERATE / 48000))
47 /** next power of two greater than MAX_BLOCKSIZE */
48 #define MAX_BLOCKSIZE_POW2 (64 * (MAX_SAMPLERATE / 48000))
49
50 /** number of allowed filters */
51 #define NUM_FILTERS 2
52
53 /** The maximum number of taps in either the IIR or FIR filter;
54 * I believe MLP actually specifies the maximum order for IIR filters as four,
55 * and that the sum of the orders of both filters must be <= 8. */
56 #define MAX_FILTER_ORDER 8
57
58 #define FIR 0
59 #define IIR 1
60
61 /** filter data */
62 typedef struct {
63 uint8_t order; ///< number of taps in filter
64 uint8_t shift; ///< Right shift to apply to output of filter.
65
66 int32_t coeff[MAX_FILTER_ORDER];
67 int32_t state[MAX_FILTER_ORDER];
68 } FilterParams;
69
70 /** sample data coding information */
71 typedef struct {
72 FilterParams filter_params[NUM_FILTERS];
73
74 int16_t huff_offset; ///< Offset to apply to residual values.
75 int32_t sign_huff_offset; ///< sign/rounding-corrected version of huff_offset
76 uint8_t codebook; ///< Which VLC codebook to use to read residuals.
77 uint8_t huff_lsbs; ///< Size of residual suffix not encoded using VLC.
78 } ChannelParams;
79
80 /** Tables defining the Huffman codes.
81 * There are three entropy coding methods used in MLP (four if you count
82 * "none" as a method). These use the same sequences for codes starting with
83 * 00 or 01, but have different codes starting with 1. */
84
85 extern const uint8_t ff_mlp_huffman_tables[3][18][2];
86
87 /** MLP uses checksums that seem to be based on the standard CRC algorithm, but
88 * are not (in implementation terms, the table lookup and XOR are reversed).
89 * We can implement this behavior using a standard av_crc on all but the
90 * last element, then XOR that with the last element. */
91
92 uint8_t ff_mlp_checksum8 (const uint8_t *buf, unsigned int buf_size);
93 uint16_t ff_mlp_checksum16(const uint8_t *buf, unsigned int buf_size);
94
95 /** Calculate an 8-bit checksum over a restart header -- a non-multiple-of-8
96 * number of bits, starting two bits into the first byte of buf. */
97
98 uint8_t ff_mlp_restart_checksum(const uint8_t *buf, unsigned int bit_size);
99
100 /** XOR together all the bytes of a buffer.
101 * Does this belong in dspcontext? */
102
103 uint8_t ff_mlp_calculate_parity(const uint8_t *buf, unsigned int buf_size);
104
105 int ff_mlp_init_crc2D(AVCodecParserContext *s);
106
107 void ff_mlp_init_crc();
108
109 #endif /* FFMPEG_MLP_H */