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