This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 691f9cd4289c9db3167b666f8ca9dcf694aa40e9
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Tue Mar 10 22:09:29 2026 +0100
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Sat Mar 14 19:31:45 2026 +0100

    avcodec/apv_dsp: Reindent after previous commit
    
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/apv_dsp.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/libavcodec/apv_dsp.c b/libavcodec/apv_dsp.c
index 3513f04cd4..22446d25a4 100644
--- a/libavcodec/apv_dsp.c
+++ b/libavcodec/apv_dsp.c
@@ -102,19 +102,19 @@ static void apv_decode_transquant_c(void *output,
 
     // Output.
     av_assert2(bit_depth > 8 && bit_depth <= 16);
-        uint16_t *ptr = output;
-        int bd_shift = 20 - bit_depth;
-        pitch /= 2; // Pitch was in bytes, 2 bytes per sample.
+    uint16_t *ptr = output;
+    int bd_shift = 20 - bit_depth;
+    pitch /= 2; // Pitch was in bytes, 2 bytes per sample.
 
-        for (int y = 0; y < 8; y++) {
-            for (int x = 0; x < 8; x++) {
-                int sample = ((recon_sample[y][x] +
-                               (1 << (bd_shift - 1))) >> bd_shift) +
-                    (1 << (bit_depth - 1));
-                ptr[x] = av_clip_uintp2(sample, bit_depth);
-            }
-            ptr += pitch;
+    for (int y = 0; y < 8; y++) {
+        for (int x = 0; x < 8; x++) {
+            int sample = ((recon_sample[y][x] +
+                           (1 << (bd_shift - 1))) >> bd_shift) +
+                (1 << (bit_depth - 1));
+            ptr[x] = av_clip_uintp2(sample, bit_depth);
         }
+        ptr += pitch;
+    }
 }
 
 av_cold void ff_apv_dsp_init(APVDSPContext *dsp)

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to