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.

174 lines
5.2KB

  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/opt.h"
  22. #include "libavcodec/flac.h"
  23. #include "avformat.h"
  24. #include "avio_internal.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. ffio_fill(pb, 0, n_padding_bytes);
  38. return 0;
  39. }
  40. static int flac_write_block_comment(AVIOContext *pb, AVDictionary **m,
  41. int last_block, int bitexact)
  42. {
  43. const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT;
  44. unsigned int len, count;
  45. uint8_t *p, *p0;
  46. ff_metadata_conv(m, ff_vorbiscomment_metadata_conv, NULL);
  47. len = ff_vorbiscomment_length(*m, vendor, &count);
  48. p0 = av_malloc(len+4);
  49. if (!p0)
  50. return AVERROR(ENOMEM);
  51. p = p0;
  52. bytestream_put_byte(&p, last_block ? 0x84 : 0x04);
  53. bytestream_put_be24(&p, len);
  54. ff_vorbiscomment_write(&p, m, vendor, count);
  55. avio_write(pb, p0, len+4);
  56. av_freep(&p0);
  57. p = NULL;
  58. return 0;
  59. }
  60. static int flac_write_header(struct AVFormatContext *s)
  61. {
  62. int ret;
  63. int padding = s->metadata_header_padding;
  64. AVCodecContext *codec = s->streams[0]->codec;
  65. FlacMuxerContext *c = s->priv_data;
  66. if (!c->write_header)
  67. return 0;
  68. if (s->nb_streams > 1) {
  69. av_log(s, AV_LOG_ERROR, "only one stream is supported\n");
  70. return AVERROR(EINVAL);
  71. }
  72. if (codec->codec_id != AV_CODEC_ID_FLAC) {
  73. av_log(s, AV_LOG_ERROR, "unsupported codec\n");
  74. return AVERROR(EINVAL);
  75. }
  76. if (padding < 0)
  77. padding = 8192;
  78. /* The FLAC specification states that 24 bits are used to represent the
  79. * size of a metadata block so we must clip this value to 2^24-1. */
  80. padding = av_clip_c(padding, 0, 16777215);
  81. ret = ff_flac_write_header(s->pb, codec, 0);
  82. if (ret)
  83. return ret;
  84. ret = flac_write_block_comment(s->pb, &s->metadata, !padding,
  85. codec->flags & CODEC_FLAG_BITEXACT);
  86. if (ret)
  87. return ret;
  88. /* The command line flac encoder defaults to placing a seekpoint
  89. * every 10s. So one might add padding to allow that later
  90. * but there seems to be no simple way to get the duration here.
  91. * So just add the amount requested by the user. */
  92. if (padding)
  93. flac_write_block_padding(s->pb, padding, 1);
  94. return ret;
  95. }
  96. static int flac_write_trailer(struct AVFormatContext *s)
  97. {
  98. AVIOContext *pb = s->pb;
  99. uint8_t *streaminfo;
  100. enum FLACExtradataFormat format;
  101. int64_t file_size;
  102. FlacMuxerContext *c = s->priv_data;
  103. if (!c->write_header)
  104. return 0;
  105. if (!avpriv_flac_is_extradata_valid(s->streams[0]->codec, &format, &streaminfo))
  106. return -1;
  107. if (pb->seekable) {
  108. /* rewrite the STREAMINFO header block data */
  109. file_size = avio_tell(pb);
  110. avio_seek(pb, 8, SEEK_SET);
  111. avio_write(pb, streaminfo, FLAC_STREAMINFO_SIZE);
  112. avio_seek(pb, file_size, SEEK_SET);
  113. avio_flush(pb);
  114. } else {
  115. av_log(s, AV_LOG_WARNING, "unable to rewrite FLAC header.\n");
  116. }
  117. return 0;
  118. }
  119. static int flac_write_packet(struct AVFormatContext *s, AVPacket *pkt)
  120. {
  121. avio_write(s->pb, pkt->data, pkt->size);
  122. return 0;
  123. }
  124. static const AVOption flacenc_options[] = {
  125. { "write_header", "Write the file header", offsetof(FlacMuxerContext, write_header), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
  126. { NULL },
  127. };
  128. static const AVClass flac_muxer_class = {
  129. .class_name = "flac muxer",
  130. .item_name = av_default_item_name,
  131. .option = flacenc_options,
  132. .version = LIBAVUTIL_VERSION_INT,
  133. };
  134. AVOutputFormat ff_flac_muxer = {
  135. .name = "flac",
  136. .long_name = NULL_IF_CONFIG_SMALL("raw FLAC"),
  137. .priv_data_size = sizeof(FlacMuxerContext),
  138. .mime_type = "audio/x-flac",
  139. .extensions = "flac",
  140. .audio_codec = AV_CODEC_ID_FLAC,
  141. .video_codec = AV_CODEC_ID_NONE,
  142. .write_header = flac_write_header,
  143. .write_packet = flac_write_packet,
  144. .write_trailer = flac_write_trailer,
  145. .flags = AVFMT_NOTIMESTAMPS,
  146. .priv_class = &flac_muxer_class,
  147. };