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

Git pushed a commit to branch master
in repository ffmpeg.

commit e97f52e55710b4510b22e551d79088c6fbf39072
Author:     Andreas Rheinhardt <[email protected]>
AuthorDate: Mon Apr 6 19:24:49 2026 +0200
Commit:     Andreas Rheinhardt <[email protected]>
CommitDate: Wed Apr 8 21:33:17 2026 +0200

    avcodec/g726: Fix indentation
    
    Forgotten in e344c1ea36f228e2987e25327638771c4cedcd33.
    
    Reviewed-by: Lynne <[email protected]>
    Signed-off-by: Andreas Rheinhardt <[email protected]>
---
 libavcodec/g726.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/libavcodec/g726.c b/libavcodec/g726.c
index f41df3073f..d05b67660d 100644
--- a/libavcodec/g726.c
+++ b/libavcodec/g726.c
@@ -59,12 +59,10 @@ static inline Float11* i2f(int i, Float11* f)
 
 static inline int16_t mult(Float11* f1, Float11* f2)
 {
-        int res, exp;
-
-        exp = f1->exp + f2->exp;
-        res = (((f1->mant * f2->mant) + 0x30) >> 4);
-        res = exp > 19 ? res << (exp - 19) : res >> (19 - exp);
-        return (f1->sign ^ f2->sign) ? -res : res;
+    int exp = f1->exp + f2->exp;
+    int res = (((f1->mant * f2->mant) + 0x30) >> 4);
+    res = exp > 19 ? res << (exp - 19) : res >> (19 - exp);
+    return (f1->sign ^ f2->sign) ? -res : res;
 }
 
 static inline int sgn(int value)

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

Reply via email to