loasdec.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. static int loas_probe(AVProbeData *p)
  27. {
  28. int max_frames = 0, first_frames = 0;
  29. int fsize, frames;
  30. uint8_t *buf0 = p->buf;
  31. uint8_t *buf2;
  32. uint8_t *buf;
  33. uint8_t *end = buf0 + p->buf_size - 3;
  34. buf = buf0;
  35. for(; buf < end; buf= buf2+1) {
  36. buf2 = buf;
  37. for(frames = 0; buf2 < end; frames++) {
  38. uint32_t header = AV_RB24(buf2);
  39. if((header >> 13) != 0x2B7)
  40. break;
  41. fsize = (header & 0x1FFF) + 3;
  42. if(fsize < 7)
  43. break;
  44. fsize = FFMIN(fsize, end - buf2);
  45. buf2 += fsize;
  46. }
  47. max_frames = FFMAX(max_frames, frames);
  48. if(buf == buf0)
  49. first_frames= frames;
  50. }
  51. if (first_frames>=3) return AVPROBE_SCORE_MAX/2+1;
  52. else if(max_frames>100)return AVPROBE_SCORE_MAX/2;
  53. else if(max_frames>=3) return AVPROBE_SCORE_MAX/4;
  54. else return 0;
  55. }
  56. static int loas_read_header(AVFormatContext *s,
  57. AVFormatParameters *ap)
  58. {
  59. AVStream *st;
  60. st = avformat_new_stream(s, NULL);
  61. if (!st)
  62. return AVERROR(ENOMEM);
  63. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  64. st->codec->codec_id = s->iformat->value;
  65. st->need_parsing = AVSTREAM_PARSE_FULL;
  66. //LCM of all possible AAC sample rates
  67. avpriv_set_pts_info(st, 64, 1, 28224000);
  68. return 0;
  69. }
  70. AVInputFormat ff_loas_demuxer = {
  71. .name = "loas",
  72. .long_name = NULL_IF_CONFIG_SMALL("LOAS AudioSyncStream"),
  73. .read_probe = loas_probe,
  74. .read_header = loas_read_header,
  75. .read_packet = ff_raw_read_partial_packet,
  76. .flags= AVFMT_GENERIC_INDEX,
  77. .value = CODEC_ID_AAC_LATM,
  78. };