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.

177 lines
5.3KB

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