aacdec.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 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 "libavutil/intreadwrite.h"
  23. #include "avformat.h"
  24. #include "rawdec.h"
  25. #include "id3v2.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. if (ff_id3v2_match(buf0, ID3v2_DEFAULT_MAGIC)) {
  36. buf0 += ff_id3v2_tag_len(buf0);
  37. }
  38. buf = buf0;
  39. for(; buf < end; buf= buf2+1) {
  40. buf2 = buf;
  41. for(frames = 0; buf2 < end; frames++) {
  42. uint32_t header = AV_RB16(buf2);
  43. if((header&0xFFF6) != 0xFFF0)
  44. break;
  45. fsize = (AV_RB32(buf2+3)>>13) & 0x8FFF;
  46. if(fsize < 7)
  47. break;
  48. buf2 += fsize;
  49. }
  50. max_frames = FFMAX(max_frames, frames);
  51. if(buf == buf0)
  52. first_frames= frames;
  53. }
  54. if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1;
  55. else if(max_frames>500)return AVPROBE_SCORE_MAX/2;
  56. else if(max_frames>=3) return AVPROBE_SCORE_MAX/4;
  57. else if(max_frames>=1) return 1;
  58. else return 0;
  59. }
  60. static int adts_aac_read_header(AVFormatContext *s,
  61. AVFormatParameters *ap)
  62. {
  63. AVStream *st;
  64. st = av_new_stream(s, 0);
  65. if (!st)
  66. return AVERROR(ENOMEM);
  67. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  68. st->codec->codec_id = s->iformat->value;
  69. st->need_parsing = AVSTREAM_PARSE_FULL;
  70. ff_id3v1_read(s);
  71. ff_id3v2_read(s, ID3v2_DEFAULT_MAGIC);
  72. return 0;
  73. }
  74. AVInputFormat aac_demuxer = {
  75. "aac",
  76. NULL_IF_CONFIG_SMALL("raw ADTS AAC"),
  77. 0,
  78. adts_aac_probe,
  79. adts_aac_read_header,
  80. ff_raw_read_partial_packet,
  81. .flags= AVFMT_GENERIC_INDEX,
  82. .extensions = "aac",
  83. .value = CODEC_ID_AAC,
  84. };