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
28
29
31 int last_block)
32 {
33 avio_w8(pb, last_block ? 0x81 : 0x01);
36 return 0;
37 }
38
40 int last_block, int bitexact)
41 {
45
47
50 if (!p0)
52 p = p0;
53
54 bytestream_put_byte(&p, last_block ? 0x84 : 0x04);
55 bytestream_put_be24(&p, len);
57
60 p = NULL;
61
62 return 0;
63 }
64
66 {
69
73 }
77 }
78
80 if (ret)
82
85 if (ret)
87
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 let's try the flac default of 8192 bytes */
93
95 }
96
98 {
102 int64_t file_size;
103
105 return -1;
106
108 /* rewrite the STREAMINFO header block data */
114 } else {
116 }
117 return 0;
118 }
119
121 {
123 return 0;
124 }
125
129 .mime_type = "audio/x-flac",
130 .extensions = "flac",
137 };