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.

83 lines
2.5KB

  1. /*
  2. * Copyright (C) 2005 Matthieu CASTET
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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 "avformat.h"
  22. #include "bitstream.h"
  23. #include "ogg2.h"
  24. #define FLAC_STREAMINFO_SIZE 0x22
  25. static int
  26. flac_header (AVFormatContext * s, int idx)
  27. {
  28. ogg_t *ogg = s->priv_data;
  29. ogg_stream_t *os = ogg->streams + idx;
  30. AVStream *st = s->streams[idx];
  31. GetBitContext gb;
  32. int mdt;
  33. if (os->buf[os->pstart] == 0xff)
  34. return 0;
  35. init_get_bits(&gb, os->buf + os->pstart, os->psize*8);
  36. get_bits(&gb, 1); /* metadata_last */
  37. mdt = get_bits(&gb, 7);
  38. if (mdt == 0x7f) {
  39. skip_bits(&gb, 4*8); /* "FLAC" */
  40. if(get_bits(&gb, 8) != 1) /* unsupported major version */
  41. return -1;
  42. skip_bits(&gb, 8 + 16); /* minor version + header count */
  43. skip_bits(&gb, 4*8); /* "fLaC" */
  44. /* METADATA_BLOCK_HEADER */
  45. if (get_bits(&gb, 32) != FLAC_STREAMINFO_SIZE)
  46. return -1;
  47. skip_bits(&gb, 16*2+24*2);
  48. st->codec->sample_rate = get_bits_long(&gb, 20);
  49. st->codec->channels = get_bits(&gb, 3) + 1;
  50. st->codec->codec_type = CODEC_TYPE_AUDIO;
  51. st->codec->codec_id = CODEC_ID_FLAC;
  52. st->codec->extradata =
  53. av_malloc(FLAC_STREAMINFO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
  54. memcpy (st->codec->extradata, os->buf + os->pstart + 5 + 4 + 4 + 4,
  55. FLAC_STREAMINFO_SIZE);
  56. st->codec->extradata_size = FLAC_STREAMINFO_SIZE;
  57. st->time_base.num = 1;
  58. st->time_base.den = st->codec->sample_rate;
  59. } else if (mdt == 4) {
  60. vorbis_comment (s, os->buf + os->pstart + 4, os->psize - 4);
  61. }
  62. return 1;
  63. }
  64. ogg_codec_t flac_codec = {
  65. .magic = "\177FLAC",
  66. .magicsize = 5,
  67. .header = flac_header
  68. };