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.

122 lines
3.6KB

  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 "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. GetBitContext gb;
  34. FLACStreaminfo si;
  35. int mdt;
  36. if (os->buf[os->pstart] == 0xff)
  37. return 0;
  38. init_get_bits(&gb, os->buf + os->pstart, os->psize*8);
  39. skip_bits1(&gb); /* metadata_last */
  40. mdt = get_bits(&gb, 7);
  41. if (mdt == OGG_FLAC_METADATA_TYPE_STREAMINFO) {
  42. uint8_t *streaminfo_start = os->buf + os->pstart + 5 + 4 + 4 + 4;
  43. skip_bits_long(&gb, 4*8); /* "FLAC" */
  44. if(get_bits(&gb, 8) != 1) /* unsupported major version */
  45. return -1;
  46. skip_bits_long(&gb, 8 + 16); /* minor version + header count */
  47. skip_bits_long(&gb, 4*8); /* "fLaC" */
  48. /* METADATA_BLOCK_HEADER */
  49. if (get_bits_long(&gb, 32) != FLAC_STREAMINFO_SIZE)
  50. return -1;
  51. avpriv_flac_parse_streaminfo(st->codec, &si, streaminfo_start);
  52. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  53. st->codec->codec_id = AV_CODEC_ID_FLAC;
  54. st->need_parsing = AVSTREAM_PARSE_HEADERS;
  55. st->codec->extradata =
  56. av_malloc(FLAC_STREAMINFO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
  57. memcpy(st->codec->extradata, streaminfo_start, FLAC_STREAMINFO_SIZE);
  58. st->codec->extradata_size = FLAC_STREAMINFO_SIZE;
  59. avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
  60. } else if (mdt == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
  61. ff_vorbis_comment (s, &st->metadata, os->buf + os->pstart + 4, os->psize - 4);
  62. }
  63. return 1;
  64. }
  65. static int
  66. old_flac_header (AVFormatContext * s, int idx)
  67. {
  68. struct ogg *ogg = s->priv_data;
  69. AVStream *st = s->streams[idx];
  70. struct ogg_stream *os = ogg->streams + idx;
  71. AVCodecParserContext *parser = av_parser_init(AV_CODEC_ID_FLAC);
  72. int size;
  73. uint8_t *data;
  74. if (!parser)
  75. return -1;
  76. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  77. st->codec->codec_id = AV_CODEC_ID_FLAC;
  78. parser->flags = PARSER_FLAG_COMPLETE_FRAMES;
  79. av_parser_parse2(parser, st->codec,
  80. &data, &size, os->buf + os->pstart, os->psize,
  81. AV_NOPTS_VALUE, AV_NOPTS_VALUE, -1);
  82. av_parser_close(parser);
  83. if (st->codec->sample_rate) {
  84. avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
  85. return 0;
  86. }
  87. return 1;
  88. }
  89. const struct ogg_codec ff_flac_codec = {
  90. .magic = "\177FLAC",
  91. .magicsize = 5,
  92. .header = flac_header,
  93. .nb_header = 2,
  94. };
  95. const struct ogg_codec ff_old_flac_codec = {
  96. .magic = "fLaC",
  97. .magicsize = 4,
  98. .header = old_flac_header,
  99. .nb_header = 0,
  100. };