]> git.sesse.net Git - ffmpeg/blob - libavformat/flacenc.c
avcodec/libopenjpegenc: Replace av_frame_alloc() and av_frame_ref() by av_frame_clone()
[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/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
30
31 typedef struct FlacMuxerContext {
32     const AVClass *class;
33     int write_header;
34 } FlacMuxerContext;
35
36 static int flac_write_block_padding(AVIOContext *pb, unsigned int n_padding_bytes,
37                                     int last_block)
38 {
39     avio_w8(pb, last_block ? 0x81 : 0x01);
40     avio_wb24(pb, n_padding_bytes);
41     ffio_fill(pb, 0, n_padding_bytes);
42     return 0;
43 }
44
45 static int flac_write_block_comment(AVIOContext *pb, AVDictionary **m,
46                                     int last_block, int bitexact)
47 {
48     const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT;
49     unsigned int len, count;
50     uint8_t *p, *p0;
51
52     ff_metadata_conv(m, ff_vorbiscomment_metadata_conv, NULL);
53
54     len = ff_vorbiscomment_length(*m, vendor, &count);
55     p0 = av_malloc(len+4);
56     if (!p0)
57         return AVERROR(ENOMEM);
58     p = p0;
59
60     bytestream_put_byte(&p, last_block ? 0x84 : 0x04);
61     bytestream_put_be24(&p, len);
62     ff_vorbiscomment_write(&p, m, vendor, count);
63
64     avio_write(pb, p0, len+4);
65     av_freep(&p0);
66     p = NULL;
67
68     return 0;
69 }
70
71 static int flac_write_header(struct AVFormatContext *s)
72 {
73     int ret;
74     AVCodecContext *codec = s->streams[0]->codec;
75     FlacMuxerContext *c   = s->priv_data;
76
77     if (!c->write_header)
78         return 0;
79
80     if (s->nb_streams > 1) {
81         av_log(s, AV_LOG_ERROR, "only one stream is supported\n");
82         return AVERROR(EINVAL);
83     }
84     if (codec->codec_id != AV_CODEC_ID_FLAC) {
85         av_log(s, AV_LOG_ERROR, "unsupported codec\n");
86         return AVERROR(EINVAL);
87     }
88
89     ret = ff_flac_write_header(s->pb, codec, 0);
90     if (ret)
91         return ret;
92
93     ret = flac_write_block_comment(s->pb, &s->metadata, 0,
94                                    codec->flags & CODEC_FLAG_BITEXACT);
95     if (ret)
96         return ret;
97
98     /* The command line flac encoder defaults to placing a seekpoint
99      * every 10s.  So one might add padding to allow that later
100      * but there seems to be no simple way to get the duration here.
101      * So let's try the flac default of 8192 bytes */
102     flac_write_block_padding(s->pb, 8192, 1);
103
104     return ret;
105 }
106
107 static int flac_write_trailer(struct AVFormatContext *s)
108 {
109     AVIOContext *pb = s->pb;
110     uint8_t *streaminfo;
111     enum FLACExtradataFormat format;
112     int64_t file_size;
113     FlacMuxerContext *c = s->priv_data;
114
115     if (!c->write_header)
116         return 0;
117
118     if (!avpriv_flac_is_extradata_valid(s->streams[0]->codec, &format, &streaminfo))
119         return -1;
120
121     if (pb->seekable) {
122         /* rewrite the STREAMINFO header block data */
123         file_size = avio_tell(pb);
124         avio_seek(pb, 8, SEEK_SET);
125         avio_write(pb, streaminfo, FLAC_STREAMINFO_SIZE);
126         avio_seek(pb, file_size, SEEK_SET);
127         avio_flush(pb);
128     } else {
129         av_log(s, AV_LOG_WARNING, "unable to rewrite FLAC header.\n");
130     }
131     return 0;
132 }
133
134 static int flac_write_packet(struct AVFormatContext *s, AVPacket *pkt)
135 {
136     avio_write(s->pb, pkt->data, pkt->size);
137     return 0;
138 }
139
140 static const AVOption flacenc_options[] = {
141     { "write_header", "Write the file header", offsetof(FlacMuxerContext, write_header), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
142     { NULL },
143 };
144
145 static const AVClass flac_muxer_class = {
146     .class_name = "flac muxer",
147     .item_name  = av_default_item_name,
148     .option     = flacenc_options,
149     .version    = LIBAVUTIL_VERSION_INT,
150 };
151
152 AVOutputFormat ff_flac_muxer = {
153     .name              = "flac",
154     .long_name         = NULL_IF_CONFIG_SMALL("raw FLAC"),
155     .priv_data_size    = sizeof(FlacMuxerContext),
156     .mime_type         = "audio/x-flac",
157     .extensions        = "flac",
158     .audio_codec       = AV_CODEC_ID_FLAC,
159     .video_codec       = AV_CODEC_ID_NONE,
160     .write_header      = flac_write_header,
161     .write_packet      = flac_write_packet,
162     .write_trailer     = flac_write_trailer,
163     .flags             = AVFMT_NOTIMESTAMPS,
164     .priv_class        = &flac_muxer_class,
165 };