oggparseflac.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 "libavcodec/get_bits.h"
  22. #include "libavcodec/flac.h"
  23. #include "avformat.h"
  24. #include "oggdec.h"
  25. #define OGG_FLAC_METADATA_TYPE_STREAMINFO 0x7F
  26. static int
  27. flac_header (AVFormatContext * s, int idx)
  28. {
  29. struct ogg *ogg = s->priv_data;
  30. struct ogg_stream *os = ogg->streams + idx;
  31. AVStream *st = s->streams[idx];
  32. GetBitContext gb;
  33. FLACStreaminfo si;
  34. int mdt;
  35. if (os->buf[os->pstart] == 0xff)
  36. return 0;
  37. init_get_bits(&gb, os->buf + os->pstart, os->psize*8);
  38. skip_bits1(&gb); /* metadata_last */
  39. mdt = get_bits(&gb, 7);
  40. if (mdt == OGG_FLAC_METADATA_TYPE_STREAMINFO) {
  41. uint8_t *streaminfo_start = os->buf + os->pstart + 5 + 4 + 4 + 4;
  42. skip_bits_long(&gb, 4*8); /* "FLAC" */
  43. if(get_bits(&gb, 8) != 1) /* unsupported major version */
  44. return -1;
  45. skip_bits_long(&gb, 8 + 16); /* minor version + header count */
  46. skip_bits_long(&gb, 4*8); /* "fLaC" */
  47. /* METADATA_BLOCK_HEADER */
  48. if (get_bits_long(&gb, 32) != FLAC_STREAMINFO_SIZE)
  49. return -1;
  50. ff_flac_parse_streaminfo(st->codec, &si, streaminfo_start);
  51. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  52. st->codec->codec_id = CODEC_ID_FLAC;
  53. st->codec->extradata =
  54. av_malloc(FLAC_STREAMINFO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
  55. memcpy(st->codec->extradata, streaminfo_start, FLAC_STREAMINFO_SIZE);
  56. st->codec->extradata_size = FLAC_STREAMINFO_SIZE;
  57. av_set_pts_info(st, 64, 1, st->codec->sample_rate);
  58. } else if (mdt == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
  59. ff_vorbis_comment (s, &st->metadata, os->buf + os->pstart + 4, os->psize - 4);
  60. }
  61. return 1;
  62. }
  63. static int
  64. old_flac_header (AVFormatContext * s, int idx)
  65. {
  66. AVStream *st = s->streams[idx];
  67. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  68. st->codec->codec_id = CODEC_ID_FLAC;
  69. return 0;
  70. }
  71. const struct ogg_codec ff_flac_codec = {
  72. .magic = "\177FLAC",
  73. .magicsize = 5,
  74. .header = flac_header
  75. };
  76. const struct ogg_codec ff_old_flac_codec = {
  77. .magic = "fLaC",
  78. .magicsize = 4,
  79. .header = old_flac_header
  80. };