mlp.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. #ifndef AVCODEC_MLP_H
  22. #define AVCODEC_MLP_H
  23. #include <stdint.h>
  24. #include "avcodec.h"
  25. /** Last possible matrix channel for each codec */
  26. #define MAX_MATRIX_CHANNEL_MLP 5
  27. #define MAX_MATRIX_CHANNEL_TRUEHD 7
  28. /** Maximum number of channels in a valid stream.
  29. * MLP : 5.1 + 2 noise channels -> 8 channels
  30. * TrueHD: 7.1 -> 8 channels
  31. */
  32. #define MAX_CHANNELS 8
  33. /** Maximum number of matrices used in decoding; most streams have one matrix
  34. * per output channel, but some rematrix a channel (usually 0) more than once.
  35. */
  36. #define MAX_MATRICES_MLP 6
  37. #define MAX_MATRICES_TRUEHD 8
  38. #define MAX_MATRICES 8
  39. /** Maximum number of substreams that can be decoded.
  40. * MLP's limit is 2. TrueHD supports at least up to 3.
  41. */
  42. #define MAX_SUBSTREAMS 4
  43. /** which multiple of 48000 the maximum sample rate is */
  44. #define MAX_RATEFACTOR 4
  45. /** maximum sample frequency seen in files */
  46. #define MAX_SAMPLERATE (MAX_RATEFACTOR * 48000)
  47. /** maximum number of audio samples within one access unit */
  48. #define MAX_BLOCKSIZE (40 * MAX_RATEFACTOR)
  49. /** next power of two greater than MAX_BLOCKSIZE */
  50. #define MAX_BLOCKSIZE_POW2 (64 * MAX_RATEFACTOR)
  51. /** number of allowed filters */
  52. #define NUM_FILTERS 2
  53. /** The maximum number of taps in IIR and FIR filters. */
  54. #define MAX_FIR_ORDER 8
  55. #define MAX_IIR_ORDER 4
  56. /** Code that signals end of a stream. */
  57. #define END_OF_STREAM 0xd234d234
  58. #define FIR 0
  59. #define IIR 1
  60. /** filter data */
  61. typedef struct FilterParams {
  62. uint8_t order; ///< number of taps in filter
  63. uint8_t shift; ///< Right shift to apply to output of filter.
  64. int32_t state[MAX_FIR_ORDER];
  65. int coeff_bits;
  66. int coeff_shift;
  67. } FilterParams;
  68. /** sample data coding information */
  69. typedef struct ChannelParams {
  70. FilterParams filter_params[NUM_FILTERS];
  71. int32_t coeff[NUM_FILTERS][MAX_FIR_ORDER];
  72. int16_t huff_offset; ///< Offset to apply to residual values.
  73. int32_t sign_huff_offset; ///< sign/rounding-corrected version of huff_offset
  74. uint8_t codebook; ///< Which VLC codebook to use to read residuals.
  75. uint8_t huff_lsbs; ///< Size of residual suffix not encoded using VLC.
  76. } ChannelParams;
  77. /** Tables defining the Huffman codes.
  78. * There are three entropy coding methods used in MLP (four if you count
  79. * "none" as a method). These use the same sequences for codes starting with
  80. * 00 or 01, but have different codes starting with 1.
  81. */
  82. extern const uint8_t ff_mlp_huffman_tables[3][18][2];
  83. typedef struct {
  84. uint8_t channel_occupancy;
  85. uint8_t group1_channels;
  86. uint8_t group2_channels;
  87. uint8_t summary_info;
  88. } ChannelInformation;
  89. /** Tables defining channel information.
  90. *
  91. * Possible channel arrangements are:
  92. *
  93. * (Group 1) C
  94. * (Group 1) L, R
  95. * (Group 1) Lf, Rf / (Group 2) S
  96. * (Group 1) Lf, Rf / (Group 2) Ls, Rs
  97. * (Group 1) Lf, Rf / (Group 2) LFE
  98. * (Group 1) Lf, Rf / (Group 2) LFE, S
  99. * (Group 1) Lf, Rf / (Group 2) LFE, Ls, Rs
  100. * (Group 1) Lf, Rf / (Group 2) C
  101. * (Group 1) Lf, Rf / (Group 2) C, S
  102. * (Group 1) Lf, Rf / (Group 2) C, Ls, Rs
  103. * (Group 1) Lf, Rf / (Group 2) C, LFE
  104. * (Group 1) Lf, Rf / (Group 2) C, LFE, S
  105. * (Group 1) Lf, Rf / (Group 2) C, LFE, Ls, Rs
  106. * (Group 1) Lf, Rf C / (Group 2) S
  107. * (Group 1) Lf, Rf C / (Group 2) Ls, Rs
  108. * (Group 1) Lf, Rf C / (Group 2) LFE
  109. * (Group 1) Lf, Rf C / (Group 2) LFE, S
  110. * (Group 1) Lf, Rf C / (Group 2) LFE, Ls, Rs
  111. * (Group 1) Lf, Rf Ls Rs / (Group 2) LFE
  112. * (Group 1) Lf, Rf Ls Rs / (Group 2) C
  113. * (Group 1) Lf, Rf, Ls, Rs / (Group 2) C, LFE
  114. */
  115. extern const ChannelInformation ff_mlp_ch_info[21];
  116. extern const uint64_t ff_mlp_channel_layouts[12];
  117. /** MLP uses checksums that seem to be based on the standard CRC algorithm, but
  118. * are not (in implementation terms, the table lookup and XOR are reversed).
  119. * We can implement this behavior using a standard av_crc on all but the
  120. * last element, then XOR that with the last element.
  121. */
  122. uint8_t ff_mlp_checksum8 (const uint8_t *buf, unsigned int buf_size);
  123. uint16_t ff_mlp_checksum16(const uint8_t *buf, unsigned int buf_size);
  124. /** Calculate an 8-bit checksum over a restart header -- a non-multiple-of-8
  125. * number of bits, starting two bits into the first byte of buf.
  126. */
  127. uint8_t ff_mlp_restart_checksum(const uint8_t *buf, unsigned int bit_size);
  128. /** XOR together all the bytes of a buffer.
  129. * Does this belong in dspcontext?
  130. */
  131. uint8_t ff_mlp_calculate_parity(const uint8_t *buf, unsigned int buf_size);
  132. void ff_mlp_init_crc(void);
  133. /** XOR four bytes into one. */
  134. static inline uint8_t xor_32_to_8(uint32_t value)
  135. {
  136. value ^= value >> 16;
  137. value ^= value >> 8;
  138. return value;
  139. }
  140. typedef enum THDChannelModifier {
  141. THD_CH_MODIFIER_NOTINDICATED = 0x0,
  142. THD_CH_MODIFIER_STEREO = 0x0, // Stereo (not Dolby Surround)
  143. THD_CH_MODIFIER_LTRT = 0x1, // Dolby Surround
  144. THD_CH_MODIFIER_LBINRBIN = 0x2, // Dolby Headphone
  145. THD_CH_MODIFIER_MONO = 0x3, // Mono or Dual Mono
  146. THD_CH_MODIFIER_NOTSURROUNDEX = 0x1, // Not Dolby Digital EX
  147. THD_CH_MODIFIER_SURROUNDEX = 0x2, // Dolby Digital EX
  148. } THDChannelModifier;
  149. #endif /* AVCODEC_MLP_H */