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.

95 lines
2.7KB

  1. /*
  2. * LOAS AudioSyncStream demuxer
  3. * Copyright (c) 2008 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/intreadwrite.h"
  22. #include "libavutil/internal.h"
  23. #include "avformat.h"
  24. #include "internal.h"
  25. #include "rawdec.h"
  26. #define LOAS_SYNC_WORD 0x2b7
  27. static int loas_probe(AVProbeData *p)
  28. {
  29. int max_frames = 0, first_frames = 0;
  30. int fsize, frames;
  31. const uint8_t *buf0 = p->buf;
  32. const uint8_t *buf2;
  33. const uint8_t *buf;
  34. const uint8_t *end = buf0 + p->buf_size - 3;
  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_RB24(buf2);
  40. if ((header >> 13) != LOAS_SYNC_WORD)
  41. break;
  42. fsize = (header & 0x1FFF) + 3;
  43. if (fsize < 7)
  44. break;
  45. fsize = FFMIN(fsize, end - buf2);
  46. buf2 += fsize;
  47. }
  48. max_frames = FFMAX(max_frames, frames);
  49. if (buf == buf0)
  50. first_frames = frames;
  51. }
  52. if (first_frames >= 3)
  53. return AVPROBE_SCORE_EXTENSION + 1;
  54. else if (max_frames > 100)
  55. return AVPROBE_SCORE_EXTENSION;
  56. else if (max_frames >= 3)
  57. return AVPROBE_SCORE_EXTENSION / 2;
  58. else
  59. return 0;
  60. }
  61. static int loas_read_header(AVFormatContext *s)
  62. {
  63. AVStream *st;
  64. st = avformat_new_stream(s, NULL);
  65. if (!st)
  66. return AVERROR(ENOMEM);
  67. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  68. st->codec->codec_id = s->iformat->raw_codec_id;
  69. st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
  70. //LCM of all possible AAC sample rates
  71. avpriv_set_pts_info(st, 64, 1, 28224000);
  72. return 0;
  73. }
  74. AVInputFormat ff_loas_demuxer = {
  75. .name = "loas",
  76. .long_name = NULL_IF_CONFIG_SMALL("LOAS AudioSyncStream"),
  77. .read_probe = loas_probe,
  78. .read_header = loas_read_header,
  79. .read_packet = ff_raw_read_partial_packet,
  80. .flags= AVFMT_GENERIC_INDEX,
  81. .raw_codec_id = AV_CODEC_ID_AAC_LATM,
  82. };