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.

159 lines
4.6KB

  1. /*
  2. * raw FLAC muxer
  3. * Copyright (c) 2006-2009 Justin Ruggles
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/opt.h"
  22. #include "libavcodec/flac.h"
  23. #include "avformat.h"
  24. #include "flacenc.h"
  25. #include "vorbiscomment.h"
  26. #include "libavcodec/bytestream.h"
  27. typedef struct FlacMuxerContext {
  28. const AVClass *class;
  29. int write_header;
  30. } FlacMuxerContext;
  31. static int flac_write_block_padding(AVIOContext *pb, unsigned int n_padding_bytes,
  32. int last_block)
  33. {
  34. avio_w8(pb, last_block ? 0x81 : 0x01);
  35. avio_wb24(pb, n_padding_bytes);
  36. while (n_padding_bytes > 0) {
  37. avio_w8(pb, 0);
  38. n_padding_bytes--;
  39. }
  40. return 0;
  41. }
  42. static int flac_write_block_comment(AVIOContext *pb, AVDictionary **m,
  43. int last_block, int bitexact)
  44. {
  45. const char *vendor = bitexact ? "Libav" : LIBAVFORMAT_IDENT;
  46. unsigned int len, count;
  47. uint8_t *p, *p0;
  48. ff_metadata_conv(m, ff_vorbiscomment_metadata_conv, NULL);
  49. len = ff_vorbiscomment_length(*m, vendor, &count);
  50. p0 = av_malloc(len+4);
  51. if (!p0)
  52. return AVERROR(ENOMEM);
  53. p = p0;
  54. bytestream_put_byte(&p, last_block ? 0x84 : 0x04);
  55. bytestream_put_be24(&p, len);
  56. ff_vorbiscomment_write(&p, m, vendor, count);
  57. avio_write(pb, p0, len+4);
  58. av_freep(&p0);
  59. p = NULL;
  60. return 0;
  61. }
  62. static int flac_write_header(struct AVFormatContext *s)
  63. {
  64. int ret;
  65. AVCodecContext *codec = s->streams[0]->codec;
  66. FlacMuxerContext *c = s->priv_data;
  67. if (!c->write_header)
  68. return 0;
  69. ret = ff_flac_write_header(s->pb, codec, 0);
  70. if (ret)
  71. return ret;
  72. ret = flac_write_block_comment(s->pb, &s->metadata, 0,
  73. codec->flags & CODEC_FLAG_BITEXACT);
  74. if (ret)
  75. return ret;
  76. /* The command line flac encoder defaults to placing a seekpoint
  77. * every 10s. So one might add padding to allow that later
  78. * but there seems to be no simple way to get the duration here.
  79. * So let's try the flac default of 8192 bytes */
  80. flac_write_block_padding(s->pb, 8192, 1);
  81. return ret;
  82. }
  83. static int flac_write_trailer(struct AVFormatContext *s)
  84. {
  85. AVIOContext *pb = s->pb;
  86. uint8_t *streaminfo;
  87. enum FLACExtradataFormat format;
  88. int64_t file_size;
  89. FlacMuxerContext *c = s->priv_data;
  90. if (!c->write_header)
  91. return 0;
  92. if (!avpriv_flac_is_extradata_valid(s->streams[0]->codec, &format, &streaminfo))
  93. return -1;
  94. if (pb->seekable) {
  95. /* rewrite the STREAMINFO header block data */
  96. file_size = avio_tell(pb);
  97. avio_seek(pb, 8, SEEK_SET);
  98. avio_write(pb, streaminfo, FLAC_STREAMINFO_SIZE);
  99. avio_seek(pb, file_size, SEEK_SET);
  100. avio_flush(pb);
  101. } else {
  102. av_log(s, AV_LOG_WARNING, "unable to rewrite FLAC header.\n");
  103. }
  104. return 0;
  105. }
  106. static int flac_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  107. {
  108. avio_write(s->pb, pkt->data, pkt->size);
  109. return 0;
  110. }
  111. static const AVOption flacenc_options[] = {
  112. { "write_header", "Write the file header", offsetof(FlacMuxerContext, write_header), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
  113. { NULL },
  114. };
  115. static const AVClass flac_muxer_class = {
  116. .class_name = "flac muxer",
  117. .item_name = av_default_item_name,
  118. .option = flacenc_options,
  119. .version = LIBAVUTIL_VERSION_INT,
  120. };
  121. AVOutputFormat ff_flac_muxer = {
  122. .name = "flac",
  123. .long_name = NULL_IF_CONFIG_SMALL("raw FLAC"),
  124. .priv_data_size = sizeof(FlacMuxerContext),
  125. .mime_type = "audio/x-flac",
  126. .extensions = "flac",
  127. .audio_codec = AV_CODEC_ID_FLAC,
  128. .video_codec = AV_CODEC_ID_NONE,
  129. .write_header = flac_write_header,
  130. .write_packet = flac_write_packet,
  131. .write_trailer = flac_write_trailer,
  132. .flags = AVFMT_NOTIMESTAMPS,
  133. .priv_class = &flac_muxer_class,
  134. };