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.

179 lines
5.6KB

  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. #define AC3_HEADER_SIZE 7
  27. static const uint8_t eac3_blocks[4] = {
  28. 1, 2, 3, 6
  29. };
  30. int ff_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr)
  31. {
  32. int frame_size_code;
  33. memset(hdr, 0, sizeof(*hdr));
  34. hdr->sync_word = get_bits(gbc, 16);
  35. if(hdr->sync_word != 0x0B77)
  36. return AAC_AC3_PARSE_ERROR_SYNC;
  37. /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */
  38. hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F;
  39. if(hdr->bitstream_id > 16)
  40. return AAC_AC3_PARSE_ERROR_BSID;
  41. hdr->num_blocks = 6;
  42. /* set default mix levels */
  43. hdr->center_mix_level = 1; // -4.5dB
  44. hdr->surround_mix_level = 1; // -6.0dB
  45. if(hdr->bitstream_id <= 10) {
  46. /* Normal AC-3 */
  47. hdr->crc1 = get_bits(gbc, 16);
  48. hdr->sr_code = get_bits(gbc, 2);
  49. if(hdr->sr_code == 3)
  50. return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
  51. frame_size_code = get_bits(gbc, 6);
  52. if(frame_size_code > 37)
  53. return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  54. skip_bits(gbc, 5); // skip bsid, already got it
  55. skip_bits(gbc, 3); // skip bitstream mode
  56. hdr->channel_mode = get_bits(gbc, 3);
  57. if(hdr->channel_mode == AC3_CHMODE_STEREO) {
  58. skip_bits(gbc, 2); // skip dsurmod
  59. } else {
  60. if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO)
  61. hdr->center_mix_level = get_bits(gbc, 2);
  62. if(hdr->channel_mode & 4)
  63. hdr->surround_mix_level = get_bits(gbc, 2);
  64. }
  65. hdr->lfe_on = get_bits1(gbc);
  66. hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8;
  67. hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift;
  68. hdr->bit_rate = (ff_ac3_bitrate_tab[frame_size_code>>1] * 1000) >> hdr->sr_shift;
  69. hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
  70. hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2;
  71. hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT;
  72. hdr->substreamid = 0;
  73. } else {
  74. /* Enhanced AC-3 */
  75. hdr->crc1 = 0;
  76. hdr->frame_type = get_bits(gbc, 2);
  77. if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED)
  78. return AAC_AC3_PARSE_ERROR_FRAME_TYPE;
  79. hdr->substreamid = get_bits(gbc, 3);
  80. hdr->frame_size = (get_bits(gbc, 11) + 1) << 1;
  81. if(hdr->frame_size < AC3_HEADER_SIZE)
  82. return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  83. hdr->sr_code = get_bits(gbc, 2);
  84. if (hdr->sr_code == 3) {
  85. int sr_code2 = get_bits(gbc, 2);
  86. if(sr_code2 == 3)
  87. return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
  88. hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2;
  89. hdr->sr_shift = 1;
  90. } else {
  91. hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)];
  92. hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code];
  93. hdr->sr_shift = 0;
  94. }
  95. hdr->channel_mode = get_bits(gbc, 3);
  96. hdr->lfe_on = get_bits1(gbc);
  97. hdr->bit_rate = (uint32_t)(8.0 * hdr->frame_size * hdr->sample_rate /
  98. (hdr->num_blocks * 256.0));
  99. hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
  100. }
  101. hdr->channel_layout = ff_ac3_channel_layout_tab[hdr->channel_mode];
  102. if (hdr->lfe_on)
  103. hdr->channel_layout |= CH_LOW_FREQUENCY;
  104. return 0;
  105. }
  106. static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
  107. int *need_next_header, int *new_frame_start)
  108. {
  109. int err;
  110. union {
  111. uint64_t u64;
  112. uint8_t u8[8];
  113. } tmp = { av_be2ne64(state) };
  114. AC3HeaderInfo hdr;
  115. GetBitContext gbc;
  116. init_get_bits(&gbc, tmp.u8+8-AC3_HEADER_SIZE, 54);
  117. err = ff_ac3_parse_header(&gbc, &hdr);
  118. if(err < 0)
  119. return 0;
  120. hdr_info->sample_rate = hdr.sample_rate;
  121. hdr_info->bit_rate = hdr.bit_rate;
  122. hdr_info->channels = hdr.channels;
  123. hdr_info->channel_layout = hdr.channel_layout;
  124. hdr_info->samples = hdr.num_blocks * 256;
  125. if(hdr.bitstream_id>10)
  126. hdr_info->codec_id = CODEC_ID_EAC3;
  127. else if (hdr_info->codec_id == CODEC_ID_NONE)
  128. hdr_info->codec_id = CODEC_ID_AC3;
  129. *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT);
  130. *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT);
  131. return hdr.frame_size;
  132. }
  133. static av_cold int ac3_parse_init(AVCodecParserContext *s1)
  134. {
  135. AACAC3ParseContext *s = s1->priv_data;
  136. s->header_size = AC3_HEADER_SIZE;
  137. s->sync = ac3_sync;
  138. return 0;
  139. }
  140. AVCodecParser ff_ac3_parser = {
  141. { CODEC_ID_AC3, CODEC_ID_EAC3 },
  142. sizeof(AACAC3ParseContext),
  143. ac3_parse_init,
  144. ff_aac_ac3_parse,
  145. ff_parse_close,
  146. };