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.

101 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. #define AAC_HEADER_SIZE 7
  26. static const int aac_sample_rates[16] = {
  27. 96000, 88200, 64000, 48000, 44100, 32000,
  28. 24000, 22050, 16000, 12000, 11025, 8000, 7350
  29. };
  30. static const int aac_channels[8] = {
  31. 0, 1, 2, 3, 4, 5, 6, 8
  32. };
  33. static int aac_sync(const uint8_t *buf, int *channels, int *sample_rate,
  34. int *bit_rate, int *samples)
  35. {
  36. GetBitContext bits;
  37. int size, rdb, ch, sr;
  38. init_get_bits(&bits, buf, AAC_HEADER_SIZE * 8);
  39. if(get_bits(&bits, 12) != 0xfff)
  40. return 0;
  41. skip_bits1(&bits); /* id */
  42. skip_bits(&bits, 2); /* layer */
  43. skip_bits1(&bits); /* protection_absent */
  44. skip_bits(&bits, 2); /* profile_objecttype */
  45. sr = get_bits(&bits, 4); /* sample_frequency_index */
  46. if(!aac_sample_rates[sr])
  47. return 0;
  48. skip_bits1(&bits); /* private_bit */
  49. ch = get_bits(&bits, 3); /* channel_configuration */
  50. if(!aac_channels[ch])
  51. return 0;
  52. skip_bits1(&bits); /* original/copy */
  53. skip_bits1(&bits); /* home */
  54. /* adts_variable_header */
  55. skip_bits1(&bits); /* copyright_identification_bit */
  56. skip_bits1(&bits); /* copyright_identification_start */
  57. size = get_bits(&bits, 13); /* aac_frame_length */
  58. if(size < AAC_HEADER_SIZE)
  59. return 0;
  60. skip_bits(&bits, 11); /* adts_buffer_fullness */
  61. rdb = get_bits(&bits, 2); /* number_of_raw_data_blocks_in_frame */
  62. *channels = aac_channels[ch];
  63. *sample_rate = aac_sample_rates[sr];
  64. *samples = (rdb + 1) * 1024;
  65. *bit_rate = size * 8 * *sample_rate / *samples;
  66. return size;
  67. }
  68. static int aac_parse_init(AVCodecParserContext *s1)
  69. {
  70. AACAC3ParseContext *s = s1->priv_data;
  71. s->inbuf_ptr = s->inbuf;
  72. s->header_size = AAC_HEADER_SIZE;
  73. s->sync = aac_sync;
  74. return 0;
  75. }
  76. AVCodecParser aac_parser = {
  77. { CODEC_ID_AAC },
  78. sizeof(AACAC3ParseContext),
  79. aac_parse_init,
  80. ff_aac_ac3_parse,
  81. NULL,
  82. };