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.

108 lines
3.2KB

  1. /*
  2. * raw ADTS AAC demuxer
  3. * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at>
  4. * Copyright (c) 2009 Robert Swain ( rob opendot cl )
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "libavutil/intreadwrite.h"
  23. #include "avformat.h"
  24. #include "internal.h"
  25. #include "rawdec.h"
  26. #include "id3v1.h"
  27. static int adts_aac_probe(AVProbeData *p)
  28. {
  29. int max_frames = 0, first_frames = 0;
  30. int fsize, frames;
  31. uint8_t *buf0 = p->buf;
  32. uint8_t *buf2;
  33. uint8_t *buf;
  34. uint8_t *end = buf0 + p->buf_size - 7;
  35. buf = buf0;
  36. for (; buf < end; buf = buf2 + 1) {
  37. buf2 = buf;
  38. for (frames = 0; buf2 < end; frames++) {
  39. uint32_t header = AV_RB16(buf2);
  40. if ((header & 0xFFF6) != 0xFFF0) {
  41. if (buf != buf0) {
  42. // Found something that isn't an ADTS header, starting
  43. // from a position other than the start of the buffer.
  44. // Discard the count we've accumulated so far since it
  45. // probably was a false positive.
  46. frames = 0;
  47. }
  48. break;
  49. }
  50. fsize = (AV_RB32(buf2 + 3) >> 13) & 0x1FFF;
  51. if (fsize < 7)
  52. break;
  53. buf2 += fsize;
  54. }
  55. max_frames = FFMAX(max_frames, frames);
  56. if (buf == buf0)
  57. first_frames = frames;
  58. }
  59. if (first_frames >= 3)
  60. return AVPROBE_SCORE_EXTENSION + 1;
  61. else if (max_frames > 100)
  62. return AVPROBE_SCORE_EXTENSION;
  63. else if (max_frames >= 3)
  64. return AVPROBE_SCORE_EXTENSION / 2;
  65. else if (max_frames >= 1)
  66. return 1;
  67. else
  68. return 0;
  69. }
  70. static int adts_aac_read_header(AVFormatContext *s)
  71. {
  72. AVStream *st;
  73. st = avformat_new_stream(s, NULL);
  74. if (!st)
  75. return AVERROR(ENOMEM);
  76. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  77. st->codecpar->codec_id = s->iformat->raw_codec_id;
  78. st->need_parsing = AVSTREAM_PARSE_FULL;
  79. ff_id3v1_read(s);
  80. // LCM of all possible ADTS sample rates
  81. avpriv_set_pts_info(st, 64, 1, 28224000);
  82. return 0;
  83. }
  84. AVInputFormat ff_aac_demuxer = {
  85. .name = "aac",
  86. .long_name = NULL_IF_CONFIG_SMALL("raw ADTS AAC (Advanced Audio Coding)"),
  87. .read_probe = adts_aac_probe,
  88. .read_header = adts_aac_read_header,
  89. .read_packet = ff_raw_read_partial_packet,
  90. .flags = AVFMT_GENERIC_INDEX,
  91. .extensions = "aac",
  92. .mime_type = "audio/aac,audio/aacp,audio/x-aac",
  93. .raw_codec_id = AV_CODEC_ID_AAC,
  94. };