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.

213 lines
6.6KB

  1. /*
  2. * raw FLAC muxer
  3. * Copyright (c) 2006-2009 Justin Ruggles
  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 "libavutil/channel_layout.h"
  22. #include "libavutil/opt.h"
  23. #include "libavcodec/flac.h"
  24. #include "avformat.h"
  25. #include "avio_internal.h"
  26. #include "flacenc.h"
  27. #include "vorbiscomment.h"
  28. #include "libavcodec/bytestream.h"
  29. typedef struct FlacMuxerContext {
  30. const AVClass *class;
  31. int write_header;
  32. /* updated streaminfo sent by the encoder at the end */
  33. uint8_t *streaminfo;
  34. } FlacMuxerContext;
  35. static int flac_write_block_padding(AVIOContext *pb, unsigned int n_padding_bytes,
  36. int last_block)
  37. {
  38. avio_w8(pb, last_block ? 0x81 : 0x01);
  39. avio_wb24(pb, n_padding_bytes);
  40. ffio_fill(pb, 0, n_padding_bytes);
  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 ? "ffmpeg" : 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. int padding = s->metadata_header_padding;
  67. AVCodecContext *codec = s->streams[0]->codec;
  68. FlacMuxerContext *c = s->priv_data;
  69. if (!c->write_header)
  70. return 0;
  71. if (s->nb_streams > 1) {
  72. av_log(s, AV_LOG_ERROR, "only one stream is supported\n");
  73. return AVERROR(EINVAL);
  74. }
  75. if (codec->codec_id != AV_CODEC_ID_FLAC) {
  76. av_log(s, AV_LOG_ERROR, "unsupported codec\n");
  77. return AVERROR(EINVAL);
  78. }
  79. if (padding < 0)
  80. padding = 8192;
  81. /* The FLAC specification states that 24 bits are used to represent the
  82. * size of a metadata block so we must clip this value to 2^24-1. */
  83. padding = av_clip_c(padding, 0, 16777215);
  84. ret = ff_flac_write_header(s->pb, codec->extradata,
  85. codec->extradata_size, 0);
  86. if (ret)
  87. return ret;
  88. /* add the channel layout tag */
  89. if (codec->channel_layout &&
  90. !(codec->channel_layout & ~0x3ffffULL) &&
  91. !ff_flac_is_native_layout(codec->channel_layout)) {
  92. AVDictionaryEntry *chmask = av_dict_get(s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK",
  93. NULL, 0);
  94. if (chmask) {
  95. av_log(s, AV_LOG_WARNING, "A WAVEFORMATEXTENSIBLE_CHANNEL_MASK is "
  96. "already present, this muxer will not overwrite it.\n");
  97. } else {
  98. uint8_t buf[32];
  99. snprintf(buf, sizeof(buf), "0x%"PRIx64, codec->channel_layout);
  100. av_dict_set(&s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", buf, 0);
  101. }
  102. }
  103. ret = flac_write_block_comment(s->pb, &s->metadata, !padding,
  104. s->flags & AVFMT_FLAG_BITEXACT);
  105. if (ret)
  106. return ret;
  107. /* The command line flac encoder defaults to placing a seekpoint
  108. * every 10s. So one might add padding to allow that later
  109. * but there seems to be no simple way to get the duration here.
  110. * So just add the amount requested by the user. */
  111. if (padding)
  112. flac_write_block_padding(s->pb, padding, 1);
  113. return ret;
  114. }
  115. static int flac_write_trailer(struct AVFormatContext *s)
  116. {
  117. AVIOContext *pb = s->pb;
  118. int64_t file_size;
  119. FlacMuxerContext *c = s->priv_data;
  120. uint8_t *streaminfo = c->streaminfo ? c->streaminfo :
  121. s->streams[0]->codec->extradata;
  122. if (!c->write_header || !streaminfo)
  123. return 0;
  124. if (pb->seekable) {
  125. /* rewrite the STREAMINFO header block data */
  126. file_size = avio_tell(pb);
  127. avio_seek(pb, 8, SEEK_SET);
  128. avio_write(pb, streaminfo, FLAC_STREAMINFO_SIZE);
  129. avio_seek(pb, file_size, SEEK_SET);
  130. avio_flush(pb);
  131. } else {
  132. av_log(s, AV_LOG_WARNING, "unable to rewrite FLAC header.\n");
  133. }
  134. av_freep(&c->streaminfo);
  135. return 0;
  136. }
  137. static int flac_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  138. {
  139. FlacMuxerContext *c = s->priv_data;
  140. uint8_t *streaminfo;
  141. int streaminfo_size;
  142. /* check for updated streaminfo */
  143. streaminfo = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA,
  144. &streaminfo_size);
  145. if (streaminfo && streaminfo_size == FLAC_STREAMINFO_SIZE) {
  146. av_freep(&c->streaminfo);
  147. c->streaminfo = av_malloc(FLAC_STREAMINFO_SIZE);
  148. if (!c->streaminfo)
  149. return AVERROR(ENOMEM);
  150. memcpy(c->streaminfo, streaminfo, FLAC_STREAMINFO_SIZE);
  151. }
  152. if (pkt->size)
  153. avio_write(s->pb, pkt->data, pkt->size);
  154. return 0;
  155. }
  156. static const AVOption flacenc_options[] = {
  157. { "write_header", "Write the file header", offsetof(FlacMuxerContext, write_header), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
  158. { NULL },
  159. };
  160. static const AVClass flac_muxer_class = {
  161. .class_name = "flac muxer",
  162. .item_name = av_default_item_name,
  163. .option = flacenc_options,
  164. .version = LIBAVUTIL_VERSION_INT,
  165. };
  166. AVOutputFormat ff_flac_muxer = {
  167. .name = "flac",
  168. .long_name = NULL_IF_CONFIG_SMALL("raw FLAC"),
  169. .priv_data_size = sizeof(FlacMuxerContext),
  170. .mime_type = "audio/x-flac",
  171. .extensions = "flac",
  172. .audio_codec = AV_CODEC_ID_FLAC,
  173. .video_codec = AV_CODEC_ID_NONE,
  174. .write_header = flac_write_header,
  175. .write_packet = flac_write_packet,
  176. .write_trailer = flac_write_trailer,
  177. .flags = AVFMT_NOTIMESTAMPS,
  178. .priv_class = &flac_muxer_class,
  179. };