aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/webpenc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-11-03 16:27:22 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-12-09 06:29:42 +0100
commit8283db7fb0eaf422bb45192df3552ba74187ffe3 (patch)
tree7aaaf563b1dc1f559172f7e3f32802589d313065 /libavformat/webpenc.c
parent18d7a97f9e061aff5d743aab62a5c26244e9629d (diff)
downloadffmpeg-8283db7fb0eaf422bb45192df3552ba74187ffe3.tar.gz
avformat/webpenc: Reindent after the previous commit
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/webpenc.c')
-rw-r--r--libavformat/webpenc.c94
1 files changed, 47 insertions, 47 deletions
diff --git a/libavformat/webpenc.c b/libavformat/webpenc.c
index 9ac353c967..d4acea7ba6 100644
--- a/libavformat/webpenc.c
+++ b/libavformat/webpenc.c
@@ -80,66 +80,66 @@ static int flush(AVFormatContext *s, int trailer, int64_t pts)
{
WebpContext *w = s->priv_data;
AVStream *st = s->streams[0];
- int skip = 0;
- unsigned flags = 0;
- int vp8x = 0;
+ int skip = 0;
+ unsigned flags = 0;
+ int vp8x = 0;
if (!w->last_pkt->size)
return 0;
- if (AV_RL32(w->last_pkt->data) == AV_RL32("RIFF"))
- skip = 12;
+ if (AV_RL32(w->last_pkt->data) == AV_RL32("RIFF"))
+ skip = 12;
- if (AV_RL32(w->last_pkt->data + skip) == AV_RL32("VP8X")) {
- flags |= w->last_pkt->data[skip + 4 + 4];
- vp8x = 1;
- skip += AV_RL32(w->last_pkt->data + skip + 4) + 8;
- }
+ if (AV_RL32(w->last_pkt->data + skip) == AV_RL32("VP8X")) {
+ flags |= w->last_pkt->data[skip + 4 + 4];
+ vp8x = 1;
+ skip += AV_RL32(w->last_pkt->data + skip + 4) + 8;
+ }
- if (!w->wrote_webp_header) {
- avio_write(s->pb, "RIFF\0\0\0\0WEBP", 12);
- w->wrote_webp_header = 1;
- if (w->frame_count > 1) // first non-empty packet
- w->frame_count = 1; // so we don't count previous empty packets.
- }
+ if (!w->wrote_webp_header) {
+ avio_write(s->pb, "RIFF\0\0\0\0WEBP", 12);
+ w->wrote_webp_header = 1;
+ if (w->frame_count > 1) // first non-empty packet
+ w->frame_count = 1; // so we don't count previous empty packets.
+ }
- if (w->frame_count == 1) {
- if (!trailer) {
- vp8x = 1;
- flags |= 2 + 16;
- }
-
- if (vp8x) {
- avio_write(s->pb, "VP8X", 4);
- avio_wl32(s->pb, 10);
- avio_w8(s->pb, flags);
- avio_wl24(s->pb, 0);
- avio_wl24(s->pb, st->codecpar->width - 1);
- avio_wl24(s->pb, st->codecpar->height - 1);
- }
- if (!trailer) {
- avio_write(s->pb, "ANIM", 4);
- avio_wl32(s->pb, 6);
- avio_wl32(s->pb, 0xFFFFFFFF);
- avio_wl16(s->pb, w->loop);
- }
+ if (w->frame_count == 1) {
+ if (!trailer) {
+ vp8x = 1;
+ flags |= 2 + 16;
}
- if (w->frame_count > trailer) {
- avio_write(s->pb, "ANMF", 4);
- avio_wl32(s->pb, 16 + w->last_pkt->size - skip);
- avio_wl24(s->pb, 0);
+ if (vp8x) {
+ avio_write(s->pb, "VP8X", 4);
+ avio_wl32(s->pb, 10);
+ avio_w8(s->pb, flags);
avio_wl24(s->pb, 0);
avio_wl24(s->pb, st->codecpar->width - 1);
avio_wl24(s->pb, st->codecpar->height - 1);
- if (w->last_pkt->pts != AV_NOPTS_VALUE && pts != AV_NOPTS_VALUE) {
- avio_wl24(s->pb, pts - w->last_pkt->pts);
- } else
- avio_wl24(s->pb, w->last_pkt->duration);
- avio_w8(s->pb, 0);
}
- avio_write(s->pb, w->last_pkt->data + skip, w->last_pkt->size - skip);
- av_packet_unref(w->last_pkt);
+ if (!trailer) {
+ avio_write(s->pb, "ANIM", 4);
+ avio_wl32(s->pb, 6);
+ avio_wl32(s->pb, 0xFFFFFFFF);
+ avio_wl16(s->pb, w->loop);
+ }
+ }
+
+ if (w->frame_count > trailer) {
+ avio_write(s->pb, "ANMF", 4);
+ avio_wl32(s->pb, 16 + w->last_pkt->size - skip);
+ avio_wl24(s->pb, 0);
+ avio_wl24(s->pb, 0);
+ avio_wl24(s->pb, st->codecpar->width - 1);
+ avio_wl24(s->pb, st->codecpar->height - 1);
+ if (w->last_pkt->pts != AV_NOPTS_VALUE && pts != AV_NOPTS_VALUE) {
+ avio_wl24(s->pb, pts - w->last_pkt->pts);
+ } else
+ avio_wl24(s->pb, w->last_pkt->duration);
+ avio_w8(s->pb, 0);
+ }
+ avio_write(s->pb, w->last_pkt->data + skip, w->last_pkt->size - skip);
+ av_packet_unref(w->last_pkt);
return 0;
}