]> git.sesse.net Git - ffmpeg/blob - libavformat/flacenc.c
Chronomaster DFA decoder
[ffmpeg] / libavformat / flacenc.c
1 /*
2  * raw FLAC muxer
3  * Copyright (c) 2006-2009 Justin Ruggles
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavcodec/flac.h"
23 #include "avformat.h"
24 #include "flacenc.h"
25 #include "metadata.h"
26 #include "vorbiscomment.h"
27 #include "libavcodec/bytestream.h"
28
29
30 static int flac_write_block_padding(AVIOContext *pb, unsigned int n_padding_bytes,
31                                     int last_block)
32 {
33     avio_w8(pb, last_block ? 0x81 : 0x01);
34     avio_wb24(pb, n_padding_bytes);
35     while (n_padding_bytes > 0) {
36         avio_w8(pb, 0);
37         n_padding_bytes--;
38     }
39     return 0;
40 }
41
42 static int flac_write_block_comment(AVIOContext *pb, AVMetadata **m,
43                                     int last_block, int bitexact)
44 {
45     const char *vendor = bitexact ? "ffmpeg" : LIBAVFORMAT_IDENT;
46     unsigned int len, count;
47     uint8_t *p, *p0;
48
49     ff_metadata_conv(m, ff_vorbiscomment_metadata_conv, NULL);
50
51     len = ff_vorbiscomment_length(*m, vendor, &count);
52     p0 = av_malloc(len+4);
53     if (!p0)
54         return AVERROR(ENOMEM);
55     p = p0;
56
57     bytestream_put_byte(&p, last_block ? 0x84 : 0x04);
58     bytestream_put_be24(&p, len);
59     ff_vorbiscomment_write(&p, m, vendor, count);
60
61     avio_write(pb, p0, len+4);
62     av_freep(&p0);
63     p = NULL;
64
65     return 0;
66 }
67
68 static int flac_write_header(struct AVFormatContext *s)
69 {
70     int ret;
71     AVCodecContext *codec = s->streams[0]->codec;
72
73     ret = ff_flac_write_header(s->pb, codec, 0);
74     if (ret)
75         return ret;
76
77     ret = flac_write_block_comment(s->pb, &s->metadata, 0,
78                                    codec->flags & CODEC_FLAG_BITEXACT);
79     if (ret)
80         return ret;
81
82     /* The command line flac encoder defaults to placing a seekpoint
83      * every 10s.  So one might add padding to allow that later
84      * but there seems to be no simple way to get the duration here.
85      * So let's try the flac default of 8192 bytes */
86     flac_write_block_padding(s->pb, 8192, 1);
87
88     return ret;
89 }
90
91 static int flac_write_trailer(struct AVFormatContext *s)
92 {
93     AVIOContext *pb = s->pb;
94     uint8_t *streaminfo;
95     enum FLACExtradataFormat format;
96     int64_t file_size;
97
98     if (!ff_flac_is_extradata_valid(s->streams[0]->codec, &format, &streaminfo))
99         return -1;
100
101     if (!url_is_streamed(pb)) {
102         /* rewrite the STREAMINFO header block data */
103         file_size = avio_tell(pb);
104         avio_seek(pb, 8, SEEK_SET);
105         avio_write(pb, streaminfo, FLAC_STREAMINFO_SIZE);
106         avio_seek(pb, file_size, SEEK_SET);
107         avio_flush(pb);
108     } else {
109         av_log(s, AV_LOG_WARNING, "unable to rewrite FLAC header.\n");
110     }
111     return 0;
112 }
113
114 static int flac_write_packet(struct AVFormatContext *s, AVPacket *pkt)
115 {
116     avio_write(s->pb, pkt->data, pkt->size);
117     avio_flush(s->pb);
118     return 0;
119 }
120
121 AVOutputFormat ff_flac_muxer = {
122     "flac",
123     NULL_IF_CONFIG_SMALL("raw FLAC"),
124     "audio/x-flac",
125     "flac",
126     0,
127     CODEC_ID_FLAC,
128     CODEC_ID_NONE,
129     flac_write_header,
130     flac_write_packet,
131     flac_write_trailer,
132     .flags= AVFMT_NOTIMESTAMPS,
133 };