libavformat/flacenc.c
caee91f7
 /*
  * raw FLAC muxer
  * Copyright (c) 2006-2009 Justin Ruggles
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
54ed488b
 #include "libavutil/channel_layout.h"
aa69cbc9
 #include "libavutil/opt.h"
59c6178a
 #include "libavcodec/flac.h"
caee91f7
 #include "avformat.h"
96db307b
 #include "avio_internal.h"
2578326f
 #include "flacenc.h"
66061a12
 #include "vorbiscomment.h"
 #include "libavcodec/bytestream.h"
caee91f7
 
 
aa69cbc9
 typedef struct FlacMuxerContext {
     const AVClass *class;
     int write_header;
e19d48df
 
     /* updated streaminfo sent by the encoder at the end */
     uint8_t *streaminfo;
aa69cbc9
 } FlacMuxerContext;
 
ae628ec1
 static int flac_write_block_padding(AVIOContext *pb, unsigned int n_padding_bytes,
66061a12
                                     int last_block)
 {
77eb5504
     avio_w8(pb, last_block ? 0x81 : 0x01);
     avio_wb24(pb, n_padding_bytes);
96db307b
     ffio_fill(pb, 0, n_padding_bytes);
66061a12
     return 0;
 }
 
d2d67e42
 static int flac_write_block_comment(AVIOContext *pb, AVDictionary **m,
66061a12
                                     int last_block, int bitexact)
 {
     const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT;
40a7700b
     int64_t len;
66061a12
     uint8_t *p, *p0;
 
042ca05f
     ff_metadata_conv(m, ff_vorbiscomment_metadata_conv, NULL);
 
efcde917
     len = ff_vorbiscomment_length(*m, vendor);
40a7700b
     if (len >= ((1<<24) - 4))
         return AVERROR(EINVAL);
66061a12
     p0 = av_malloc(len+4);
     if (!p0)
         return AVERROR(ENOMEM);
     p = p0;
 
     bytestream_put_byte(&p, last_block ? 0x84 : 0x04);
     bytestream_put_be24(&p, len);
efcde917
     ff_vorbiscomment_write(&p, m, vendor);
66061a12
 
77eb5504
     avio_write(pb, p0, len+4);
66061a12
     av_freep(&p0);
     p = NULL;
 
     return 0;
 }
 
2578326f
 static int flac_write_header(struct AVFormatContext *s)
 {
66061a12
     int ret;
72eeb184
     int padding = s->metadata_header_padding;
66061a12
     AVCodecContext *codec = s->streams[0]->codec;
aa69cbc9
     FlacMuxerContext *c   = s->priv_data;
 
     if (!c->write_header)
         return 0;
66061a12
 
cb0add3c
     if (s->nb_streams > 1) {
         av_log(s, AV_LOG_ERROR, "only one stream is supported\n");
         return AVERROR(EINVAL);
     }
     if (codec->codec_id != AV_CODEC_ID_FLAC) {
         av_log(s, AV_LOG_ERROR, "unsupported codec\n");
         return AVERROR(EINVAL);
     }
 
72eeb184
     if (padding < 0)
         padding = 8192;
     /* The FLAC specification states that 24 bits are used to represent the
      * size of a metadata block so we must clip this value to 2^24-1. */
2af5fb2f
     padding = av_clip_uintp2(padding, 24);
72eeb184
 
e19d48df
     ret = ff_flac_write_header(s->pb, codec->extradata,
                                codec->extradata_size, 0);
66061a12
     if (ret)
         return ret;
 
54ed488b
     /* add the channel layout tag */
     if (codec->channel_layout &&
         !(codec->channel_layout & ~0x3ffffULL) &&
         !ff_flac_is_native_layout(codec->channel_layout)) {
         AVDictionaryEntry *chmask = av_dict_get(s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK",
                                                 NULL, 0);
 
         if (chmask) {
             av_log(s, AV_LOG_WARNING, "A WAVEFORMATEXTENSIBLE_CHANNEL_MASK is "
                    "already present, this muxer will not overwrite it.\n");
         } else {
             uint8_t buf[32];
             snprintf(buf, sizeof(buf), "0x%"PRIx64, codec->channel_layout);
             av_dict_set(&s->metadata, "WAVEFORMATEXTENSIBLE_CHANNEL_MASK", buf, 0);
         }
     }
 
72eeb184
     ret = flac_write_block_comment(s->pb, &s->metadata, !padding,
0c1959b0
                                    s->flags & AVFMT_FLAG_BITEXACT);
66061a12
     if (ret)
         return ret;
 
     /* The command line flac encoder defaults to placing a seekpoint
      * every 10s.  So one might add padding to allow that later
      * but there seems to be no simple way to get the duration here.
c14b011a
      * So just add the amount requested by the user. */
72eeb184
     if (padding)
         flac_write_block_padding(s->pb, padding, 1);
66061a12
 
     return ret;
2578326f
 }
 
caee91f7
 static int flac_write_trailer(struct AVFormatContext *s)
 {
ae628ec1
     AVIOContext *pb = s->pb;
caee91f7
     int64_t file_size;
aa69cbc9
     FlacMuxerContext *c = s->priv_data;
e19d48df
     uint8_t *streaminfo = c->streaminfo ? c->streaminfo :
                                           s->streams[0]->codec->extradata;
aa69cbc9
 
e19d48df
     if (!c->write_header || !streaminfo)
aa69cbc9
         return 0;
caee91f7
 
8978feda
     if (pb->seekable) {
59c6178a
         /* rewrite the STREAMINFO header block data */
a2704c97
         file_size = avio_tell(pb);
6b4aa5da
         avio_seek(pb, 8, SEEK_SET);
77eb5504
         avio_write(pb, streaminfo, FLAC_STREAMINFO_SIZE);
6b4aa5da
         avio_seek(pb, file_size, SEEK_SET);
b7f2fdde
         avio_flush(pb);
59c6178a
     } else {
         av_log(s, AV_LOG_WARNING, "unable to rewrite FLAC header.\n");
caee91f7
     }
e19d48df
 
     av_freep(&c->streaminfo);
 
caee91f7
     return 0;
 }
 
 static int flac_write_packet(struct AVFormatContext *s, AVPacket *pkt)
 {
e19d48df
     FlacMuxerContext *c = s->priv_data;
     uint8_t *streaminfo;
     int streaminfo_size;
 
     /* check for updated streaminfo */
     streaminfo = av_packet_get_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA,
                                          &streaminfo_size);
     if (streaminfo && streaminfo_size == FLAC_STREAMINFO_SIZE) {
         av_freep(&c->streaminfo);
 
         c->streaminfo = av_malloc(FLAC_STREAMINFO_SIZE);
         if (!c->streaminfo)
             return AVERROR(ENOMEM);
         memcpy(c->streaminfo, streaminfo, FLAC_STREAMINFO_SIZE);
     }
 
     if (pkt->size)
         avio_write(s->pb, pkt->data, pkt->size);
caee91f7
     return 0;
 }
 
aa69cbc9
 static const AVOption flacenc_options[] = {
43ecec0f
     { "write_header", "Write the file header", offsetof(FlacMuxerContext, write_header), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
aa69cbc9
     { NULL },
 };
 
 static const AVClass flac_muxer_class = {
     .class_name = "flac muxer",
     .item_name  = av_default_item_name,
     .option     = flacenc_options,
     .version    = LIBAVUTIL_VERSION_INT,
 };
 
c6610a21
 AVOutputFormat ff_flac_muxer = {
dfc2c4d9
     .name              = "flac",
     .long_name         = NULL_IF_CONFIG_SMALL("raw FLAC"),
aa69cbc9
     .priv_data_size    = sizeof(FlacMuxerContext),
dfc2c4d9
     .mime_type         = "audio/x-flac",
     .extensions        = "flac",
36ef5369
     .audio_codec       = AV_CODEC_ID_FLAC,
     .video_codec       = AV_CODEC_ID_NONE,
dfc2c4d9
     .write_header      = flac_write_header,
     .write_packet      = flac_write_packet,
     .write_trailer     = flac_write_trailer,
20234a4b
     .flags             = AVFMT_NOTIMESTAMPS,
aa69cbc9
     .priv_class        = &flac_muxer_class,
caee91f7
 };