3 * Copyright (c) 2014 Michael Niedermayer
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavutil/intreadwrite.h"
23 #include "libavutil/opt.h"
27 typedef struct WebpContext{
32 int wrote_webp_header;
33 int using_webp_anim_encoder;
36 static int webp_write_header(AVFormatContext *s)
40 if (s->nb_streams != 1) {
41 av_log(s, AV_LOG_ERROR, "Only exactly 1 stream is supported\n");
42 return AVERROR(EINVAL);
45 if (st->codec->codec_id != AV_CODEC_ID_WEBP) {
46 av_log(s, AV_LOG_ERROR, "Only WebP is supported\n");
47 return AVERROR(EINVAL);
49 avpriv_set_pts_info(st, 24, 1, 1000);
54 static int is_animated_webp_packet(AVPacket *pkt)
62 if (AV_RL32(pkt->data) == AV_RL32("RIFF"))
65 if (pkt->size < skip + 4)
67 if (AV_RL32(pkt->data + skip) == AV_RL32("VP8X")) {
68 flags |= pkt->data[skip + 4 + 4];
71 if (flags & 2) // ANIMATION_FLAG is on
77 static int flush(AVFormatContext *s, int trailer, int64_t pts)
79 WebpContext *w = s->priv_data;
80 AVStream *st = s->streams[0];
82 if (w->last_pkt.size) {
87 if (w->last_pkt.size < 4)
89 if (AV_RL32(w->last_pkt.data) == AV_RL32("RIFF"))
92 if (w->last_pkt.size < skip + 4)
93 return 0; // Safe to do this as a valid WebP bitstream is >=30 bytes.
94 if (AV_RL32(w->last_pkt.data + skip) == AV_RL32("VP8X")) {
95 flags |= w->last_pkt.data[skip + 4 + 4];
97 skip += AV_RL32(w->last_pkt.data + skip + 4) + 8;
100 if (!w->wrote_webp_header) {
101 avio_write(s->pb, "RIFF\0\0\0\0WEBP", 12);
102 w->wrote_webp_header = 1;
103 if (w->frame_count > 1) // first non-empty packet
104 w->frame_count = 1; // so we don't count previous empty packets.
107 if (w->frame_count == 1) {
114 avio_write(s->pb, "VP8X", 4);
115 avio_wl32(s->pb, 10);
116 avio_w8(s->pb, flags);
118 avio_wl24(s->pb, st->codec->width - 1);
119 avio_wl24(s->pb, st->codec->height - 1);
122 avio_write(s->pb, "ANIM", 4);
124 avio_wl32(s->pb, 0xFFFFFFFF);
125 avio_wl16(s->pb, w->loop);
129 if (w->frame_count > trailer) {
130 avio_write(s->pb, "ANMF", 4);
131 avio_wl32(s->pb, 16 + w->last_pkt.size - skip);
134 avio_wl24(s->pb, st->codec->width - 1);
135 avio_wl24(s->pb, st->codec->height - 1);
136 if (w->last_pkt.pts != AV_NOPTS_VALUE && pts != AV_NOPTS_VALUE) {
137 avio_wl24(s->pb, pts - w->last_pkt.pts);
139 avio_wl24(s->pb, w->last_pkt.duration);
142 avio_write(s->pb, w->last_pkt.data + skip, w->last_pkt.size - skip);
143 av_free_packet(&w->last_pkt);
149 static int webp_write_packet(AVFormatContext *s, AVPacket *pkt)
151 WebpContext *w = s->priv_data;
152 w->using_webp_anim_encoder |= is_animated_webp_packet(pkt);
154 if (w->using_webp_anim_encoder) {
155 avio_write(s->pb, pkt->data, pkt->size);
156 w->wrote_webp_header = 1; // for good measure
159 if ((ret = flush(s, 0, pkt->pts)) < 0)
161 av_copy_packet(&w->last_pkt, pkt);
168 static int webp_write_trailer(AVFormatContext *s)
171 WebpContext *w = s->priv_data;
173 if (w->using_webp_anim_encoder) {
174 if ((w->frame_count > 1) && w->loop) { // Write loop count.
175 avio_seek(s->pb, 42, SEEK_SET);
176 avio_wl16(s->pb, w->loop);
180 if ((ret = flush(s, 1, AV_NOPTS_VALUE)) < 0)
183 filesize = avio_tell(s->pb);
184 avio_seek(s->pb, 4, SEEK_SET);
185 avio_wl32(s->pb, filesize - 8);
186 // Note: without the following, avio only writes 8 bytes to the file.
187 avio_seek(s->pb, filesize, SEEK_SET);
193 #define OFFSET(x) offsetof(WebpContext, x)
194 #define ENC AV_OPT_FLAG_ENCODING_PARAM
195 static const AVOption options[] = {
196 { "loop", "Number of times to loop the output: 0 - infinite loop", OFFSET(loop),
197 AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 65535, ENC },
201 static const AVClass webp_muxer_class = {
202 .class_name = "WebP muxer",
203 .item_name = av_default_item_name,
204 .version = LIBAVUTIL_VERSION_INT,
207 AVOutputFormat ff_webp_muxer = {
209 .long_name = NULL_IF_CONFIG_SMALL("WebP"),
210 .extensions = "webp",
211 .priv_data_size = sizeof(WebpContext),
212 .video_codec = AV_CODEC_ID_WEBP,
213 .write_header = webp_write_header,
214 .write_packet = webp_write_packet,
215 .write_trailer = webp_write_trailer,
216 .priv_class = &webp_muxer_class,
217 .flags = AVFMT_VARIABLE_FPS,