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.

214 lines
6.8KB

  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 "libavutil/channel_layout.h"
  23. #include "parser.h"
  24. #include "ac3_parser.h"
  25. #include "aac_ac3_parser.h"
  26. #include "get_bits.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_header2(GetBitContext *gbc, AC3HeaderInfo **phdr)
  42. {
  43. int frame_size_code;
  44. AC3HeaderInfo *hdr;
  45. if (!*phdr)
  46. *phdr = av_mallocz(sizeof(AC3HeaderInfo));
  47. if (!*phdr)
  48. return AVERROR(ENOMEM);
  49. hdr = *phdr;
  50. memset(hdr, 0, sizeof(*hdr));
  51. hdr->sync_word = get_bits(gbc, 16);
  52. if(hdr->sync_word != 0x0B77)
  53. return AAC_AC3_PARSE_ERROR_SYNC;
  54. /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */
  55. hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F;
  56. if(hdr->bitstream_id > 16)
  57. return AAC_AC3_PARSE_ERROR_BSID;
  58. hdr->num_blocks = 6;
  59. /* set default mix levels */
  60. hdr->center_mix_level = 5; // -4.5dB
  61. hdr->surround_mix_level = 6; // -6.0dB
  62. /* set default dolby surround mode */
  63. hdr->dolby_surround_mode = AC3_DSURMOD_NOTINDICATED;
  64. if(hdr->bitstream_id <= 10) {
  65. /* Normal AC-3 */
  66. hdr->crc1 = get_bits(gbc, 16);
  67. hdr->sr_code = get_bits(gbc, 2);
  68. if(hdr->sr_code == 3)
  69. return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
  70. frame_size_code = get_bits(gbc, 6);
  71. if(frame_size_code > 37)
  72. return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  73. skip_bits(gbc, 5); // skip bsid, already got it
  74. hdr->bitstream_mode = get_bits(gbc, 3);
  75. hdr->channel_mode = get_bits(gbc, 3);
  76. if(hdr->channel_mode == AC3_CHMODE_STEREO) {
  77. hdr->dolby_surround_mode = get_bits(gbc, 2);
  78. } else {
  79. if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO)
  80. hdr-> center_mix_level = center_levels[get_bits(gbc, 2)];
  81. if(hdr->channel_mode & 4)
  82. hdr->surround_mix_level = surround_levels[get_bits(gbc, 2)];
  83. }
  84. hdr->lfe_on = get_bits1(gbc);
  85. hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8;
  86. hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift;
  87. hdr->bit_rate = (ff_ac3_bitrate_tab[frame_size_code>>1] * 1000) >> hdr->sr_shift;
  88. hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
  89. hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2;
  90. hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT;
  91. hdr->substreamid = 0;
  92. } else {
  93. /* Enhanced AC-3 */
  94. hdr->crc1 = 0;
  95. hdr->frame_type = get_bits(gbc, 2);
  96. if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED)
  97. return AAC_AC3_PARSE_ERROR_FRAME_TYPE;
  98. hdr->substreamid = get_bits(gbc, 3);
  99. hdr->frame_size = (get_bits(gbc, 11) + 1) << 1;
  100. if(hdr->frame_size < AC3_HEADER_SIZE)
  101. return AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  102. hdr->sr_code = get_bits(gbc, 2);
  103. if (hdr->sr_code == 3) {
  104. int sr_code2 = get_bits(gbc, 2);
  105. if(sr_code2 == 3)
  106. return AAC_AC3_PARSE_ERROR_SAMPLE_RATE;
  107. hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2;
  108. hdr->sr_shift = 1;
  109. } else {
  110. hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)];
  111. hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code];
  112. hdr->sr_shift = 0;
  113. }
  114. hdr->channel_mode = get_bits(gbc, 3);
  115. hdr->lfe_on = get_bits1(gbc);
  116. hdr->bit_rate = 8LL * hdr->frame_size * hdr->sample_rate /
  117. (hdr->num_blocks * 256);
  118. hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on;
  119. }
  120. hdr->channel_layout = avpriv_ac3_channel_layout_tab[hdr->channel_mode];
  121. if (hdr->lfe_on)
  122. hdr->channel_layout |= AV_CH_LOW_FREQUENCY;
  123. return 0;
  124. }
  125. int avpriv_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr)
  126. {
  127. AC3HeaderInfo tmp, *ptmp = &tmp;
  128. int ret = avpriv_ac3_parse_header2(gbc, &ptmp);
  129. memcpy(hdr, ptmp, ((intptr_t)&tmp.channel_layout) - ((intptr_t)&tmp) + sizeof(uint64_t));
  130. return ret;
  131. }
  132. static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
  133. int *need_next_header, int *new_frame_start)
  134. {
  135. int err;
  136. union {
  137. uint64_t u64;
  138. uint8_t u8[8 + FF_INPUT_BUFFER_PADDING_SIZE];
  139. } tmp = { av_be2ne64(state) };
  140. AC3HeaderInfo hdr, *phdr = &hdr;
  141. GetBitContext gbc;
  142. init_get_bits(&gbc, tmp.u8+8-AC3_HEADER_SIZE, 54);
  143. err = avpriv_ac3_parse_header2(&gbc, &phdr);
  144. if(err < 0)
  145. return 0;
  146. hdr_info->sample_rate = hdr.sample_rate;
  147. hdr_info->bit_rate = hdr.bit_rate;
  148. hdr_info->channels = hdr.channels;
  149. hdr_info->channel_layout = hdr.channel_layout;
  150. hdr_info->samples = hdr.num_blocks * 256;
  151. hdr_info->service_type = hdr.bitstream_mode;
  152. if (hdr.bitstream_mode == 0x7 && hdr.channels > 1)
  153. hdr_info->service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
  154. if(hdr.bitstream_id>10)
  155. hdr_info->codec_id = AV_CODEC_ID_EAC3;
  156. else if (hdr_info->codec_id == AV_CODEC_ID_NONE)
  157. hdr_info->codec_id = AV_CODEC_ID_AC3;
  158. *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT);
  159. *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT);
  160. return hdr.frame_size;
  161. }
  162. static av_cold int ac3_parse_init(AVCodecParserContext *s1)
  163. {
  164. AACAC3ParseContext *s = s1->priv_data;
  165. s->header_size = AC3_HEADER_SIZE;
  166. s->sync = ac3_sync;
  167. return 0;
  168. }
  169. AVCodecParser ff_ac3_parser = {
  170. .codec_ids = { AV_CODEC_ID_AC3, AV_CODEC_ID_EAC3 },
  171. .priv_data_size = sizeof(AACAC3ParseContext),
  172. .parser_init = ac3_parse_init,
  173. .parser_parse = ff_aac_ac3_parse,
  174. .parser_close = ff_parse_close,
  175. };