yading@10
|
1 /*
|
yading@10
|
2 * MLP codec common header file
|
yading@10
|
3 * Copyright (c) 2007-2008 Ian Caulfield
|
yading@10
|
4 *
|
yading@10
|
5 * This file is part of FFmpeg.
|
yading@10
|
6 *
|
yading@10
|
7 * FFmpeg is free software; you can redistribute it and/or
|
yading@10
|
8 * modify it under the terms of the GNU Lesser General Public
|
yading@10
|
9 * License as published by the Free Software Foundation; either
|
yading@10
|
10 * version 2.1 of the License, or (at your option) any later version.
|
yading@10
|
11 *
|
yading@10
|
12 * FFmpeg is distributed in the hope that it will be useful,
|
yading@10
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
yading@10
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
yading@10
|
15 * Lesser General Public License for more details.
|
yading@10
|
16 *
|
yading@10
|
17 * You should have received a copy of the GNU Lesser General Public
|
yading@10
|
18 * License along with FFmpeg; if not, write to the Free Software
|
yading@10
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
yading@10
|
20 */
|
yading@10
|
21
|
yading@10
|
22 #ifndef AVCODEC_MLP_H
|
yading@10
|
23 #define AVCODEC_MLP_H
|
yading@10
|
24
|
yading@10
|
25 #include <stdint.h>
|
yading@10
|
26
|
yading@10
|
27 #include "avcodec.h"
|
yading@10
|
28
|
yading@10
|
29 /** Last possible matrix channel for each codec */
|
yading@10
|
30 #define MAX_MATRIX_CHANNEL_MLP 5
|
yading@10
|
31 #define MAX_MATRIX_CHANNEL_TRUEHD 7
|
yading@10
|
32 /** Maximum number of channels in a valid stream.
|
yading@10
|
33 * MLP : 5.1 + 2 noise channels -> 8 channels
|
yading@10
|
34 * TrueHD: 7.1 -> 8 channels
|
yading@10
|
35 */
|
yading@10
|
36 #define MAX_CHANNELS 8
|
yading@10
|
37
|
yading@10
|
38 /** Maximum number of matrices used in decoding; most streams have one matrix
|
yading@10
|
39 * per output channel, but some rematrix a channel (usually 0) more than once.
|
yading@10
|
40 */
|
yading@10
|
41 #define MAX_MATRICES_MLP 6
|
yading@10
|
42 #define MAX_MATRICES_TRUEHD 8
|
yading@10
|
43 #define MAX_MATRICES 8
|
yading@10
|
44
|
yading@10
|
45 /** Maximum number of substreams that can be decoded.
|
yading@10
|
46 * MLP's limit is 2. TrueHD supports at least up to 3.
|
yading@10
|
47 */
|
yading@10
|
48 #define MAX_SUBSTREAMS 3
|
yading@10
|
49
|
yading@10
|
50 /** which multiple of 48000 the maximum sample rate is */
|
yading@10
|
51 #define MAX_RATEFACTOR 4
|
yading@10
|
52 /** maximum sample frequency seen in files */
|
yading@10
|
53 #define MAX_SAMPLERATE (MAX_RATEFACTOR * 48000)
|
yading@10
|
54
|
yading@10
|
55 /** maximum number of audio samples within one access unit */
|
yading@10
|
56 #define MAX_BLOCKSIZE (40 * MAX_RATEFACTOR)
|
yading@10
|
57 /** next power of two greater than MAX_BLOCKSIZE */
|
yading@10
|
58 #define MAX_BLOCKSIZE_POW2 (64 * MAX_RATEFACTOR)
|
yading@10
|
59
|
yading@10
|
60 /** number of allowed filters */
|
yading@10
|
61 #define NUM_FILTERS 2
|
yading@10
|
62
|
yading@10
|
63 /** The maximum number of taps in IIR and FIR filters. */
|
yading@10
|
64 #define MAX_FIR_ORDER 8
|
yading@10
|
65 #define MAX_IIR_ORDER 4
|
yading@10
|
66
|
yading@10
|
67 /** Code that signals end of a stream. */
|
yading@10
|
68 #define END_OF_STREAM 0xd234d234
|
yading@10
|
69
|
yading@10
|
70 #define FIR 0
|
yading@10
|
71 #define IIR 1
|
yading@10
|
72
|
yading@10
|
73 /** filter data */
|
yading@10
|
74 typedef struct FilterParams {
|
yading@10
|
75 uint8_t order; ///< number of taps in filter
|
yading@10
|
76 uint8_t shift; ///< Right shift to apply to output of filter.
|
yading@10
|
77
|
yading@10
|
78 int32_t state[MAX_FIR_ORDER];
|
yading@10
|
79 } FilterParams;
|
yading@10
|
80
|
yading@10
|
81 /** sample data coding information */
|
yading@10
|
82 typedef struct ChannelParams {
|
yading@10
|
83 FilterParams filter_params[NUM_FILTERS];
|
yading@10
|
84 int32_t coeff[NUM_FILTERS][MAX_FIR_ORDER];
|
yading@10
|
85
|
yading@10
|
86 int16_t huff_offset; ///< Offset to apply to residual values.
|
yading@10
|
87 int32_t sign_huff_offset; ///< sign/rounding-corrected version of huff_offset
|
yading@10
|
88 uint8_t codebook; ///< Which VLC codebook to use to read residuals.
|
yading@10
|
89 uint8_t huff_lsbs; ///< Size of residual suffix not encoded using VLC.
|
yading@10
|
90 } ChannelParams;
|
yading@10
|
91
|
yading@10
|
92 /** Tables defining the Huffman codes.
|
yading@10
|
93 * There are three entropy coding methods used in MLP (four if you count
|
yading@10
|
94 * "none" as a method). These use the same sequences for codes starting with
|
yading@10
|
95 * 00 or 01, but have different codes starting with 1.
|
yading@10
|
96 */
|
yading@10
|
97 extern const uint8_t ff_mlp_huffman_tables[3][18][2];
|
yading@10
|
98
|
yading@10
|
99 /** MLP uses checksums that seem to be based on the standard CRC algorithm, but
|
yading@10
|
100 * are not (in implementation terms, the table lookup and XOR are reversed).
|
yading@10
|
101 * We can implement this behavior using a standard av_crc on all but the
|
yading@10
|
102 * last element, then XOR that with the last element.
|
yading@10
|
103 */
|
yading@10
|
104 uint8_t ff_mlp_checksum8 (const uint8_t *buf, unsigned int buf_size);
|
yading@10
|
105 uint16_t ff_mlp_checksum16(const uint8_t *buf, unsigned int buf_size);
|
yading@10
|
106
|
yading@10
|
107 /** Calculate an 8-bit checksum over a restart header -- a non-multiple-of-8
|
yading@10
|
108 * number of bits, starting two bits into the first byte of buf.
|
yading@10
|
109 */
|
yading@10
|
110 uint8_t ff_mlp_restart_checksum(const uint8_t *buf, unsigned int bit_size);
|
yading@10
|
111
|
yading@10
|
112 /** XOR together all the bytes of a buffer.
|
yading@10
|
113 * Does this belong in dspcontext?
|
yading@10
|
114 */
|
yading@10
|
115 uint8_t ff_mlp_calculate_parity(const uint8_t *buf, unsigned int buf_size);
|
yading@10
|
116
|
yading@10
|
117 void ff_mlp_init_crc(void);
|
yading@10
|
118
|
yading@10
|
119 /** XOR four bytes into one. */
|
yading@10
|
120 static inline uint8_t xor_32_to_8(uint32_t value)
|
yading@10
|
121 {
|
yading@10
|
122 value ^= value >> 16;
|
yading@10
|
123 value ^= value >> 8;
|
yading@10
|
124 return value;
|
yading@10
|
125 }
|
yading@10
|
126
|
yading@10
|
127 #endif /* AVCODEC_MLP_H */
|