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.

93 lines
3.0KB

  1. /*
  2. * Xiph CELT parser for Ogg
  3. * Copyright (c) 2011 Nicolas George
  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 <string.h>
  22. #include "libavutil/intreadwrite.h"
  23. #include "avformat.h"
  24. #include "internal.h"
  25. #include "oggdec.h"
  26. struct oggcelt_private {
  27. int extra_headers_left;
  28. };
  29. static int celt_header(AVFormatContext *s, int idx)
  30. {
  31. struct ogg *ogg = s->priv_data;
  32. struct ogg_stream *os = ogg->streams + idx;
  33. AVStream *st = s->streams[idx];
  34. struct oggcelt_private *priv = os->private;
  35. uint8_t *p = os->buf + os->pstart;
  36. if (os->psize == 60 &&
  37. !memcmp(p, ff_celt_codec.magic, ff_celt_codec.magicsize)) {
  38. /* Main header */
  39. uint32_t version, sample_rate, nb_channels, frame_size;
  40. uint32_t overlap, extra_headers;
  41. priv = av_malloc(sizeof(struct oggcelt_private));
  42. if (!priv)
  43. return AVERROR(ENOMEM);
  44. if (ff_alloc_extradata(st->codec, 2 * sizeof(uint32_t)) < 0) {
  45. av_free(priv);
  46. return AVERROR(ENOMEM);
  47. }
  48. version = AV_RL32(p + 28);
  49. /* unused header size field skipped */
  50. sample_rate = AV_RL32(p + 36);
  51. nb_channels = AV_RL32(p + 40);
  52. frame_size = AV_RL32(p + 44);
  53. overlap = AV_RL32(p + 48);
  54. /* unused bytes per packet field skipped */
  55. extra_headers = AV_RL32(p + 56);
  56. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  57. st->codec->codec_id = AV_CODEC_ID_CELT;
  58. st->codec->sample_rate = sample_rate;
  59. st->codec->channels = nb_channels;
  60. st->codec->frame_size = frame_size;
  61. if (sample_rate)
  62. avpriv_set_pts_info(st, 64, 1, sample_rate);
  63. priv->extra_headers_left = 1 + extra_headers;
  64. av_free(os->private);
  65. os->private = priv;
  66. AV_WL32(st->codec->extradata + 0, overlap);
  67. AV_WL32(st->codec->extradata + 4, version);
  68. return 1;
  69. } else if (priv && priv->extra_headers_left) {
  70. /* Extra headers (vorbiscomment) */
  71. ff_vorbis_comment(s, &st->metadata, p, os->psize, 1);
  72. priv->extra_headers_left--;
  73. return 1;
  74. } else {
  75. return 0;
  76. }
  77. }
  78. const struct ogg_codec ff_celt_codec = {
  79. .magic = "CELT ",
  80. .magicsize = 8,
  81. .header = celt_header,
  82. .nb_header = 2,
  83. };