summaryrefslogtreecommitdiff
path: root/libavformat/webpenc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-18 23:16:30 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-24 00:29:32 +0100
commitdf9d969954133c02eabe308f67b819401092d30b (patch)
tree7bba4fc98b510b01cad547af9a1928e710e4f40f /libavformat/webpenc.c
parentf9043de99a23e35a34c79bfbc9ef17b27f7236d1 (diff)
downloadffmpeg-df9d969954133c02eabe308f67b819401092d30b.tar.gz
avformat/webpenc: Reindentation
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/webpenc.c')
-rw-r--r--libavformat/webpenc.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/libavformat/webpenc.c b/libavformat/webpenc.c
index e3b12aeed2..d5edf89289 100644
--- a/libavformat/webpenc.c
+++ b/libavformat/webpenc.c
@@ -53,22 +53,22 @@ static int webp_init(AVFormatContext *s)
static int is_animated_webp_packet(AVPacket *pkt)
{
- int skip = 0;
- unsigned flags = 0;
+ int skip = 0;
+ unsigned flags = 0;
- if (pkt->size < 4)
+ if (pkt->size < 4)
return AVERROR_INVALIDDATA;
- if (AV_RL32(pkt->data) == AV_RL32("RIFF"))
- skip = 12;
+ if (AV_RL32(pkt->data) == AV_RL32("RIFF"))
+ skip = 12;
// Safe to do this as a valid WebP bitstream is >=30 bytes.
- if (pkt->size < skip + 4)
+ if (pkt->size < skip + 4)
return AVERROR_INVALIDDATA;
- if (AV_RL32(pkt->data + skip) == AV_RL32("VP8X")) {
- flags |= pkt->data[skip + 4 + 4];
- }
+ if (AV_RL32(pkt->data + skip) == AV_RL32("VP8X")) {
+ flags |= pkt->data[skip + 4 + 4];
+ }
- if (flags & 2) // ANIMATION_FLAG is on
- return 1;
+ if (flags & 2) // ANIMATION_FLAG is on
+ return 1;
return 0;
}