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.

93 lines
2.9KB

  1. /*
  2. * Audio and Video frame extraction
  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 "aac_ac3_parser.h"
  24. #include "bitstream.h"
  25. #include "mpeg4audio.h"
  26. #define AAC_HEADER_SIZE 7
  27. static int aac_sync(uint64_t state, AACAC3ParseContext *hdr_info,
  28. int *need_next_header, int *new_frame_start)
  29. {
  30. GetBitContext bits;
  31. int size, rdb, ch, sr;
  32. uint8_t tmp[8];
  33. AV_WB64(tmp, state);
  34. init_get_bits(&bits, tmp+8-AAC_HEADER_SIZE, AAC_HEADER_SIZE * 8);
  35. if(get_bits(&bits, 12) != 0xfff)
  36. return 0;
  37. skip_bits1(&bits); /* id */
  38. skip_bits(&bits, 2); /* layer */
  39. skip_bits1(&bits); /* protection_absent */
  40. skip_bits(&bits, 2); /* profile_objecttype */
  41. sr = get_bits(&bits, 4); /* sample_frequency_index */
  42. if(!ff_mpeg4audio_sample_rates[sr])
  43. return 0;
  44. skip_bits1(&bits); /* private_bit */
  45. ch = get_bits(&bits, 3); /* channel_configuration */
  46. if(!ff_mpeg4audio_channels[ch])
  47. return 0;
  48. skip_bits1(&bits); /* original/copy */
  49. skip_bits1(&bits); /* home */
  50. /* adts_variable_header */
  51. skip_bits1(&bits); /* copyright_identification_bit */
  52. skip_bits1(&bits); /* copyright_identification_start */
  53. size = get_bits(&bits, 13); /* aac_frame_length */
  54. if(size < AAC_HEADER_SIZE)
  55. return 0;
  56. skip_bits(&bits, 11); /* adts_buffer_fullness */
  57. rdb = get_bits(&bits, 2); /* number_of_raw_data_blocks_in_frame */
  58. hdr_info->channels = ff_mpeg4audio_channels[ch];
  59. hdr_info->sample_rate = ff_mpeg4audio_sample_rates[sr];
  60. hdr_info->samples = (rdb + 1) * 1024;
  61. hdr_info->bit_rate = size * 8 * hdr_info->sample_rate / hdr_info->samples;
  62. *need_next_header = 0;
  63. *new_frame_start = 1;
  64. return size;
  65. }
  66. static av_cold int aac_parse_init(AVCodecParserContext *s1)
  67. {
  68. AACAC3ParseContext *s = s1->priv_data;
  69. s->header_size = AAC_HEADER_SIZE;
  70. s->sync = aac_sync;
  71. return 0;
  72. }
  73. AVCodecParser aac_parser = {
  74. { CODEC_ID_AAC },
  75. sizeof(AACAC3ParseContext),
  76. aac_parse_init,
  77. ff_aac_ac3_parse,
  78. NULL,
  79. };