ac3_parser.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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 "bitstream.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. return 0;
  102. }
  103. int ff_ac3_parse_header_full(GetBitContext *gbc, AC3HeaderInfo *hdr){
  104. int ret, i;
  105. ret = ff_ac3_parse_header(gbc, hdr);
  106. if(!ret){
  107. if(hdr->bitstream_id>10){
  108. /* Enhanced AC-3 */
  109. skip_bits(gbc, 5); // skip bitstream id
  110. /* skip dialog normalization and compression gain */
  111. for (i = 0; i < (hdr->channel_mode ? 1 : 2); i++) {
  112. skip_bits(gbc, 5); // skip dialog normalization
  113. if (get_bits1(gbc)) {
  114. skip_bits(gbc, 8); //skip Compression gain word
  115. }
  116. }
  117. /* dependent stream channel map */
  118. if (hdr->frame_type == EAC3_FRAME_TYPE_DEPENDENT && get_bits1(gbc)) {
  119. hdr->channel_map = get_bits(gbc, 16); //custom channel map
  120. return 0;
  121. }
  122. }
  123. //default channel map based on acmod and lfeon
  124. hdr->channel_map = ff_eac3_default_chmap[hdr->channel_mode];
  125. if(hdr->lfe_on)
  126. hdr->channel_map |= AC3_CHMAP_LFE;
  127. }
  128. return ret;
  129. }
  130. static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
  131. int *need_next_header, int *new_frame_start)
  132. {
  133. int err;
  134. union {
  135. uint64_t u64;
  136. uint8_t u8[8];
  137. } tmp = { be2me_64(state) };
  138. AC3HeaderInfo hdr;
  139. GetBitContext gbc;
  140. init_get_bits(&gbc, tmp.u8+8-AC3_HEADER_SIZE, 54);
  141. err = ff_ac3_parse_header(&gbc, &hdr);
  142. if(err < 0)
  143. return 0;
  144. hdr_info->sample_rate = hdr.sample_rate;
  145. hdr_info->bit_rate = hdr.bit_rate;
  146. hdr_info->channels = hdr.channels;
  147. hdr_info->samples = hdr.num_blocks * 256;
  148. if(hdr.bitstream_id>10)
  149. hdr_info->codec_id = CODEC_ID_EAC3;
  150. else
  151. hdr_info->codec_id = CODEC_ID_AC3;
  152. *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT);
  153. *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT);
  154. return hdr.frame_size;
  155. }
  156. static av_cold int ac3_parse_init(AVCodecParserContext *s1)
  157. {
  158. AACAC3ParseContext *s = s1->priv_data;
  159. s->header_size = AC3_HEADER_SIZE;
  160. s->sync = ac3_sync;
  161. return 0;
  162. }
  163. AVCodecParser ac3_parser = {
  164. { CODEC_ID_AC3, CODEC_ID_EAC3 },
  165. sizeof(AACAC3ParseContext),
  166. ac3_parse_init,
  167. ff_aac_ac3_parse,
  168. ff_parse_close,
  169. };