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.

195 lines
6.2KB

  1. /*
  2. * AC-3 parser
  3. * Copyright (c) 2003 Fabrice Bellard
  4. * Copyright (c) 2003 Michael Niedermayer
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "parser.h"
  23. #include "ac3_parser.h"
  24. #include "aac_ac3_parser.h"
  25. #include "get_bits.h"
  26. #include "libavutil/audioconvert.h"
  27. #define AC3_HEADER_SIZE 7
  28. static const uint8_t eac3_blocks[4] = {
  29. 1, 2, 3, 6
  30. };
  31. /**
  32. * Table for center mix levels
  33. * reference: Section 5.4.2.4 cmixlev
  34. */
  35. static const uint8_t center_levels[4] = { 4, 5, 6, 5 };
  36. /**
  37. * Table for surround mix levels
  38. * reference: Section 5.4.2.5 surmixlev
  39. */
  40. static const uint8_t surround_levels[4] = { 4, 6, 7, 6 };
  41. int avpriv_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr)
  42. {
  43. int frame_size_code;
  44. memset(hdr, 0, sizeof(*hdr));
  45. hdr->sync_word = get_bits(gbc, 16);
  46. if(hdr->sync_word != 0x0B77)
  47. return AAC_AC3_PARSE_ERROR_SYNC;
  48. /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */
  49. hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F;
  50. if(hdr->bitstream_id > 16)
  51. return AAC_AC3_PARSE_ERROR_BSID;
  52. hdr->num_blocks = 6;
  53. /* set default mix levels */
  54. hdr->center_mix_level = 5; // -4.5dB
  55. hdr->surround_mix_level = 6; // -6.0dB
  56. if(hdr->bitstream_id <= 10) {
  57. /* Normal AC-3 */
  58. hdr->crc1 = get_bits(gbc, 16);
  59. hdr->sr_code = get_bits(gbc, 2);
  60. if(hdr->sr_code == 3)
  61. return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
  62. frame_size_code = get_bits(gbc, 6);
  63. if(frame_size_code > 37)
  64. return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  65. skip_bits(gbc, 5); // skip bsid, already got it
  66. hdr->bitstream_mode = get_bits(gbc, 3);
  67. hdr->channel_mode = get_bits(gbc, 3);
  68. if(hdr->channel_mode == AC3_CHMODE_STEREO) {
  69. skip_bits(gbc, 2); // skip dsurmod
  70. } else {
  71. if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO)
  72. hdr-> center_mix_level = center_levels[get_bits(gbc, 2)];
  73. if(hdr->channel_mode & 4)
  74. hdr->surround_mix_level = surround_levels[get_bits(gbc, 2)];
  75. }
  76. hdr->lfe_on = get_bits1(gbc);
  77. hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8;
  78. hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift;
  79. hdr->bit_rate = (ff_ac3_bitrate_tab[frame_size_code>>1] * 1000) >> hdr->sr_shift;
  80. hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
  81. hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2;
  82. hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT;
  83. hdr->substreamid = 0;
  84. } else {
  85. /* Enhanced AC-3 */
  86. hdr->crc1 = 0;
  87. hdr->frame_type = get_bits(gbc, 2);
  88. if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED)
  89. return AAC_AC3_PARSE_ERROR_FRAME_TYPE;
  90. hdr->substreamid = get_bits(gbc, 3);
  91. hdr->frame_size = (get_bits(gbc, 11) + 1) << 1;
  92. if(hdr->frame_size < AC3_HEADER_SIZE)
  93. return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  94. hdr->sr_code = get_bits(gbc, 2);
  95. if (hdr->sr_code == 3) {
  96. int sr_code2 = get_bits(gbc, 2);
  97. if(sr_code2 == 3)
  98. return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
  99. hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2;
  100. hdr->sr_shift = 1;
  101. } else {
  102. hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)];
  103. hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code];
  104. hdr->sr_shift = 0;
  105. }
  106. hdr->channel_mode = get_bits(gbc, 3);
  107. hdr->lfe_on = get_bits1(gbc);
  108. hdr->bit_rate = (uint32_t)(8.0 * hdr->frame_size * hdr->sample_rate /
  109. (hdr->num_blocks * 256.0));
  110. hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
  111. }
  112. hdr->channel_layout = ff_ac3_channel_layout_tab[hdr->channel_mode];
  113. if (hdr->lfe_on)
  114. hdr->channel_layout |= AV_CH_LOW_FREQUENCY;
  115. return 0;
  116. }
  117. static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
  118. int *need_next_header, int *new_frame_start)
  119. {
  120. int err;
  121. union {
  122. uint64_t u64;
  123. uint8_t u8[8];
  124. } tmp = { av_be2ne64(state) };
  125. AC3HeaderInfo hdr;
  126. GetBitContext gbc;
  127. init_get_bits(&gbc, tmp.u8+8-AC3_HEADER_SIZE, 54);
  128. err = avpriv_ac3_parse_header(&gbc, &hdr);
  129. if(err < 0)
  130. return 0;
  131. hdr_info->sample_rate = hdr.sample_rate;
  132. hdr_info->bit_rate = hdr.bit_rate;
  133. hdr_info->channels = hdr.channels;
  134. hdr_info->channel_layout = hdr.channel_layout;
  135. hdr_info->samples = hdr.num_blocks * 256;
  136. hdr_info->service_type = hdr.bitstream_mode;
  137. if (hdr.bitstream_mode == 0x7 && hdr.channels > 1)
  138. hdr_info->service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
  139. if(hdr.bitstream_id>10)
  140. hdr_info->codec_id = CODEC_ID_EAC3;
  141. else if (hdr_info->codec_id == CODEC_ID_NONE)
  142. hdr_info->codec_id = CODEC_ID_AC3;
  143. *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT);
  144. *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT);
  145. return hdr.frame_size;
  146. }
  147. static av_cold int ac3_parse_init(AVCodecParserContext *s1)
  148. {
  149. AACAC3ParseContext *s = s1->priv_data;
  150. s->header_size = AC3_HEADER_SIZE;
  151. s->sync = ac3_sync;
  152. return 0;
  153. }
  154. AVCodecParser ff_ac3_parser = {
  155. .codec_ids = { CODEC_ID_AC3, CODEC_ID_EAC3 },
  156. .priv_data_size = sizeof(AACAC3ParseContext),
  157. .parser_init = ac3_parse_init,
  158. .parser_parse = ff_aac_ac3_parse,
  159. .parser_close = ff_parse_close,
  160. };