You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

229 lines
7.0KB

  1. /*
  2. * AC-3 parser
  3. * Copyright (c) 2003 Fabrice Bellard
  4. * Copyright (c) 2003 Michael Niedermayer
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "config.h"
  23. #include "libavutil/channel_layout.h"
  24. #include "parser.h"
  25. #include "ac3_parser.h"
  26. #include "ac3_parser_internal.h"
  27. #include "aac_ac3_parser.h"
  28. #include "get_bits.h"
  29. #define AC3_HEADER_SIZE 7
  30. #if CONFIG_AC3_PARSER
  31. static const uint8_t eac3_blocks[4] = {
  32. 1, 2, 3, 6
  33. };
  34. /**
  35. * Table for center mix levels
  36. * reference: Section 5.4.2.4 cmixlev
  37. */
  38. static const uint8_t center_levels[4] = { 4, 5, 6, 5 };
  39. /**
  40. * Table for surround mix levels
  41. * reference: Section 5.4.2.5 surmixlev
  42. */
  43. static const uint8_t surround_levels[4] = { 4, 6, 7, 6 };
  44. int ff_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr)
  45. {
  46. int frame_size_code;
  47. memset(hdr, 0, sizeof(*hdr));
  48. hdr->sync_word = get_bits(gbc, 16);
  49. if(hdr->sync_word != 0x0B77)
  50. return AAC_AC3_PARSE_ERROR_SYNC;
  51. /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */
  52. hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F;
  53. if(hdr->bitstream_id > 16)
  54. return AAC_AC3_PARSE_ERROR_BSID;
  55. hdr->num_blocks = 6;
  56. /* set default mix levels */
  57. hdr->center_mix_level = 5; // -4.5dB
  58. hdr->surround_mix_level = 6; // -6.0dB
  59. /* set default dolby surround mode */
  60. hdr->dolby_surround_mode = AC3_DSURMOD_NOTINDICATED;
  61. if(hdr->bitstream_id <= 10) {
  62. /* Normal AC-3 */
  63. hdr->crc1 = get_bits(gbc, 16);
  64. hdr->sr_code = get_bits(gbc, 2);
  65. if(hdr->sr_code == 3)
  66. return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
  67. frame_size_code = get_bits(gbc, 6);
  68. if(frame_size_code > 37)
  69. return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  70. skip_bits(gbc, 5); // skip bsid, already got it
  71. hdr->bitstream_mode = get_bits(gbc, 3);
  72. hdr->channel_mode = get_bits(gbc, 3);
  73. if(hdr->channel_mode == AC3_CHMODE_STEREO) {
  74. hdr->dolby_surround_mode = get_bits(gbc, 2);
  75. } else {
  76. if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO)
  77. hdr-> center_mix_level = center_levels[get_bits(gbc, 2)];
  78. if(hdr->channel_mode & 4)
  79. hdr->surround_mix_level = surround_levels[get_bits(gbc, 2)];
  80. }
  81. hdr->lfe_on = get_bits1(gbc);
  82. hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8;
  83. hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift;
  84. hdr->bit_rate = (ff_ac3_bitrate_tab[frame_size_code>>1] * 1000) >> hdr->sr_shift;
  85. hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
  86. hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2;
  87. hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT;
  88. hdr->substreamid = 0;
  89. } else {
  90. /* Enhanced AC-3 */
  91. hdr->crc1 = 0;
  92. hdr->frame_type = get_bits(gbc, 2);
  93. if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED)
  94. return AAC_AC3_PARSE_ERROR_FRAME_TYPE;
  95. hdr->substreamid = get_bits(gbc, 3);
  96. hdr->frame_size = (get_bits(gbc, 11) + 1) << 1;
  97. if(hdr->frame_size < AC3_HEADER_SIZE)
  98. return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  99. hdr->sr_code = get_bits(gbc, 2);
  100. if (hdr->sr_code == 3) {
  101. int sr_code2 = get_bits(gbc, 2);
  102. if(sr_code2 == 3)
  103. return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
  104. hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2;
  105. hdr->sr_shift = 1;
  106. } else {
  107. hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)];
  108. hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code];
  109. hdr->sr_shift = 0;
  110. }
  111. hdr->channel_mode = get_bits(gbc, 3);
  112. hdr->lfe_on = get_bits1(gbc);
  113. hdr->bit_rate = (uint32_t)(8.0 * hdr->frame_size * hdr->sample_rate /
  114. (hdr->num_blocks * 256.0));
  115. hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
  116. }
  117. hdr->channel_layout = avpriv_ac3_channel_layout_tab[hdr->channel_mode];
  118. if (hdr->lfe_on)
  119. hdr->channel_layout |= AV_CH_LOW_FREQUENCY;
  120. return 0;
  121. }
  122. int av_ac3_parse_header(const uint8_t *buf, size_t size,
  123. uint8_t *bitstream_id, uint16_t *frame_size)
  124. {
  125. GetBitContext gb;
  126. AC3HeaderInfo hdr;
  127. int err;
  128. init_get_bits8(&gb, buf, size);
  129. err = ff_ac3_parse_header(&gb, &hdr);
  130. if (err < 0)
  131. return AVERROR_INVALIDDATA;
  132. *bitstream_id = hdr.bitstream_id;
  133. *frame_size = hdr.frame_size;
  134. return 0;
  135. }
  136. static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
  137. int *need_next_header, int *new_frame_start)
  138. {
  139. int err;
  140. union {
  141. uint64_t u64;
  142. uint8_t u8[8 + AV_INPUT_BUFFER_PADDING_SIZE];
  143. } tmp = { av_be2ne64(state) };
  144. AC3HeaderInfo hdr;
  145. GetBitContext gbc;
  146. init_get_bits(&gbc, tmp.u8+8-AC3_HEADER_SIZE, 54);
  147. err = ff_ac3_parse_header(&gbc, &hdr);
  148. if(err < 0)
  149. return 0;
  150. hdr_info->sample_rate = hdr.sample_rate;
  151. hdr_info->bit_rate = hdr.bit_rate;
  152. hdr_info->channels = hdr.channels;
  153. hdr_info->channel_layout = hdr.channel_layout;
  154. hdr_info->samples = hdr.num_blocks * 256;
  155. hdr_info->service_type = hdr.bitstream_mode;
  156. if (hdr.bitstream_mode == 0x7 && hdr.channels > 1)
  157. hdr_info->service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
  158. if(hdr.bitstream_id>10)
  159. hdr_info->codec_id = AV_CODEC_ID_EAC3;
  160. else if (hdr_info->codec_id == AV_CODEC_ID_NONE)
  161. hdr_info->codec_id = AV_CODEC_ID_AC3;
  162. *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT);
  163. *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT);
  164. return hdr.frame_size;
  165. }
  166. static av_cold int ac3_parse_init(AVCodecParserContext *s1)
  167. {
  168. AACAC3ParseContext *s = s1->priv_data;
  169. s->header_size = AC3_HEADER_SIZE;
  170. s->sync = ac3_sync;
  171. return 0;
  172. }
  173. AVCodecParser ff_ac3_parser = {
  174. .codec_ids = { AV_CODEC_ID_AC3, AV_CODEC_ID_EAC3 },
  175. .priv_data_size = sizeof(AACAC3ParseContext),
  176. .parser_init = ac3_parse_init,
  177. .parser_parse = ff_aac_ac3_parse,
  178. .parser_close = ff_parse_close,
  179. };
  180. #else
  181. int av_ac3_parse_header(const uint8_t *buf, size_t size,
  182. uint8_t *bitstream_id, uint16_t *frame_size)
  183. {
  184. return AVERROR(ENOSYS);
  185. }
  186. #endif