[SCM] libav/experimental: Cosmetics: indentation

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:14:04 UTC 2013


The following commit has been merged in the experimental branch:
commit 134e5a9a65261cb890304cfd897a3222be3b6db0
Author: Thorsten Jordan <tjordan@ macrosystem.de>
Date:   Wed Feb 13 14:24:34 2008 +0000

    Cosmetics: indentation
    
    Patch by Thorsten Jordan (tjordan atay macrosystem otday de)
    [FFmpeg-devel] Behaviour of liba52 decoder
    
    Originally committed as revision 11927 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/liba52.c b/libavcodec/liba52.c
index 81dcf6a..86b0136 100644
--- a/libavcodec/liba52.c
+++ b/libavcodec/liba52.c
@@ -160,46 +160,46 @@ static int a52_decode_frame(AVCodecContext *avctx,
         return -1;
     }
     len = s->a52_syncinfo(buf, &s->flags, &sample_rate, &bit_rate);
-                if (len == 0) {
-                    av_log(avctx, AV_LOG_ERROR, "Error decoding frame, no sync byte at begin\n");
-                    return -1;
-                }
+    if (len == 0) {
+        av_log(avctx, AV_LOG_ERROR, "Error decoding frame, no sync byte at begin\n");
+        return -1;
+    }
     if (buf_size < len) {
         av_log(avctx, AV_LOG_ERROR, "Error decoding frame, not enough bytes\n");
         return -1;
     }
-                    /* update codec info */
-                    avctx->sample_rate = sample_rate;
-                    s->channels = ac3_channels[s->flags & 7];
-                    if (s->flags & A52_LFE)
-                        s->channels++;
-                    if (avctx->request_channels > 0 &&
-                            avctx->request_channels <= 2 &&
-                            avctx->request_channels < s->channels) {
-                        avctx->channels = avctx->request_channels;
-                    } else {
-                        avctx->channels = s->channels;
-                    }
-                    avctx->bit_rate = bit_rate;
-            flags = s->flags;
-            if (avctx->channels == 1)
-                flags = A52_MONO;
-            else if (avctx->channels == 2)
-                flags = A52_STEREO;
-            else
-                flags |= A52_ADJUST_LEVEL;
-            level = 1;
-            if (s->a52_frame(s->state, buf, &flags, &level, 384)) {
-            fail:
-                av_log(avctx, AV_LOG_ERROR, "Error decoding frame\n");
-                return -1;
-            }
-            for (i = 0; i < 6; i++) {
-                if (s->a52_block(s->state))
-                    goto fail;
-                float_to_int(s->samples, out_samples + i * 256 * avctx->channels, avctx->channels);
-            }
-            *data_size = 6 * avctx->channels * 256 * sizeof(int16_t);
+    /* update codec info */
+    avctx->sample_rate = sample_rate;
+    s->channels = ac3_channels[s->flags & 7];
+    if (s->flags & A52_LFE)
+            s->channels++;
+    if (avctx->request_channels > 0 &&
+        avctx->request_channels <= 2 &&
+        avctx->request_channels < s->channels) {
+        avctx->channels = avctx->request_channels;
+    } else {
+        avctx->channels = s->channels;
+    }
+    avctx->bit_rate = bit_rate;
+    flags = s->flags;
+    if (avctx->channels == 1)
+        flags = A52_MONO;
+    else if (avctx->channels == 2)
+        flags = A52_STEREO;
+    else
+        flags |= A52_ADJUST_LEVEL;
+    level = 1;
+    if (s->a52_frame(s->state, buf, &flags, &level, 384)) {
+    fail:
+        av_log(avctx, AV_LOG_ERROR, "Error decoding frame\n");
+        return -1;
+    }
+    for (i = 0; i < 6; i++) {
+        if (s->a52_block(s->state))
+            goto fail;
+        float_to_int(s->samples, out_samples + i * 256 * avctx->channels, avctx->channels);
+    }
+    *data_size = 6 * avctx->channels * 256 * sizeof(int16_t);
     return len;
 }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list