]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/mpeg4videodec: Fix indentation
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sat, 23 Jan 2021 16:24:33 +0000 (17:24 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 26 Jan 2021 12:57:00 +0000 (13:57 +0100)
It was wrong since e03bf251d8784f4d1df2c22381c902087e151e31.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/mpeg4videodec.c

index 4bbb3df0e2f5b93c2968e82c6bdd6765a9da1b69..102e83f5c101ab900468097db44c21702a5b5160 100644 (file)
@@ -3201,15 +3201,15 @@ static int decode_studiovisualobject(Mpeg4DecContext *ctx, GetBitContext *gb)
     MpegEncContext *s = &ctx->m;
     int visual_object_type;
 
-        skip_bits(gb, 4); /* visual_object_verid */
-        visual_object_type = get_bits(gb, 4);
-        if (visual_object_type != VOT_VIDEO_ID) {
-            avpriv_request_sample(s->avctx, "VO type %u", visual_object_type);
-            return AVERROR_PATCHWELCOME;
-        }
+    skip_bits(gb, 4); /* visual_object_verid */
+    visual_object_type = get_bits(gb, 4);
+    if (visual_object_type != VOT_VIDEO_ID) {
+        avpriv_request_sample(s->avctx, "VO type %u", visual_object_type);
+        return AVERROR_PATCHWELCOME;
+    }
 
-        next_start_code_studio(gb);
-        extension_and_user_data(s, gb, 1);
+    next_start_code_studio(gb);
+    extension_and_user_data(s, gb, 1);
 
     return 0;
 }