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.

106 lines
3.1KB

  1. /*
  2. * Copyright (C) 2005 Matthieu CASTET
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <stdlib.h>
  21. #include "libavcodec/bitstream.h"
  22. #include "libavcodec/flac.h"
  23. #include "avformat.h"
  24. #include "internal.h"
  25. #include "oggdec.h"
  26. #define OGG_FLAC_METADATA_TYPE_STREAMINFO 0x7F
  27. static int
  28. flac_header (AVFormatContext * s, int idx)
  29. {
  30. struct ogg *ogg = s->priv_data;
  31. struct ogg_stream *os = ogg->streams + idx;
  32. AVStream *st = s->streams[idx];
  33. BitstreamContext bc;
  34. int mdt;
  35. if (os->buf[os->pstart] == 0xff)
  36. return 0;
  37. bitstream_init8(&bc, os->buf + os->pstart, os->psize);
  38. bitstream_skip(&bc, 1); /* metadata_last */
  39. mdt = bitstream_read(&bc, 7);
  40. if (mdt == OGG_FLAC_METADATA_TYPE_STREAMINFO) {
  41. uint8_t *streaminfo_start = os->buf + os->pstart + 5 + 4 + 4 + 4;
  42. uint32_t samplerate;
  43. bitstream_skip(&bc, 4 * 8); /* "FLAC" */
  44. if (bitstream_read(&bc, 8) != 1) /* unsupported major version */
  45. return -1;
  46. bitstream_skip(&bc, 8 + 16); /* minor version + header count */
  47. bitstream_skip(&bc, 4 * 8); /* "fLaC" */
  48. /* METADATA_BLOCK_HEADER */
  49. if (bitstream_read(&bc, 32) != FLAC_STREAMINFO_SIZE)
  50. return -1;
  51. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  52. st->codecpar->codec_id = AV_CODEC_ID_FLAC;
  53. st->need_parsing = AVSTREAM_PARSE_HEADERS;
  54. st->codecpar->extradata =
  55. av_malloc(FLAC_STREAMINFO_SIZE + AV_INPUT_BUFFER_PADDING_SIZE);
  56. memcpy(st->codecpar->extradata, streaminfo_start, FLAC_STREAMINFO_SIZE);
  57. st->codecpar->extradata_size = FLAC_STREAMINFO_SIZE;
  58. samplerate = AV_RB24(st->codecpar->extradata + 10) >> 4;
  59. if (!samplerate)
  60. return AVERROR_INVALIDDATA;
  61. avpriv_set_pts_info(st, 64, 1, samplerate);
  62. } else if (mdt == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
  63. ff_vorbis_stream_comment(s, st, os->buf + os->pstart + 4, os->psize - 4);
  64. }
  65. return 1;
  66. }
  67. static int
  68. old_flac_header (AVFormatContext * s, int idx)
  69. {
  70. AVStream *st = s->streams[idx];
  71. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  72. st->codecpar->codec_id = AV_CODEC_ID_FLAC;
  73. return 0;
  74. }
  75. const struct ogg_codec ff_flac_codec = {
  76. .magic = "\177FLAC",
  77. .magicsize = 5,
  78. .header = flac_header,
  79. .nb_header = 2,
  80. };
  81. const struct ogg_codec ff_old_flac_codec = {
  82. .magic = "fLaC",
  83. .magicsize = 4,
  84. .header = old_flac_header,
  85. .nb_header = 0,
  86. };