Whitespace change only.  Separate so the previous diff is clearer.
---
 libavcodec/utils.c | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index da057bad3e..255c133737 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -956,19 +956,19 @@ const uint8_t *avpriv_find_start_code(const uint8_t 
*av_restrict p,
         p += 3; // offset for negative indices in while loop
     }
     else {
-    if (p >= end)
-        return end;
-
-    // read up to the first three bytes in p to enable reading a start code 
across
-    // two (to four) buffers
-    for (int i = 0; i < 3; i++) {
-        *start_code <<= 8;
-        *start_code += *p;
-        p++;
-        if (avpriv_start_code_is_valid(*start_code) || p == end)
-            return p;
-    }
-    // p is now properly incremented for the negative indices in the while loop
+        if (p >= end)
+            return end;
+
+        // read up to the first three bytes in p to enable reading a start 
code across
+        // two (to four) buffers
+        for (int i = 0; i < 3; i++) {
+            *start_code <<= 8;
+            *start_code += *p;
+            p++;
+            if (avpriv_start_code_is_valid(*start_code) || p == end)
+                return p;
+        }
+        // p is now properly incremented for the negative indices in the while 
loop
     }
 
     /* with memory address increasing left to right, we are looking for (in 
hexadecimal):
-- 
2.32.0

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to