ac3_parser.c 5.9 KB

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