[SCM] libav/experimental: Cosmetics, add spaces

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:50:59 UTC 2013


The following commit has been merged in the experimental branch:
commit 61d00297ab043635d25583234e5b48bf4f07c7c4
Author: Benjamin Larsson <banan at ludd.ltu.se>
Date:   Thu Sep 10 19:12:13 2009 +0000

    Cosmetics, add spaces
    
    Originally committed as revision 19816 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/aea.c b/libavformat/aea.c
index f0e200d..d2c1a1d 100644
--- a/libavformat/aea.c
+++ b/libavformat/aea.c
@@ -36,7 +36,7 @@ static int aea_read_probe(AVProbeData *p)
         return 0;
 
     /* Magic is '00 08 00 00' in Little Endian*/
-    if(AV_RL32(p->buf)==0x800) {
+    if (AV_RL32(p->buf)==0x800) {
         int bsm_s, bsm_e, inb_s, inb_e;
         bsm_s = p->buf[2048];
         inb_s = p->buf[2048+1];
@@ -50,7 +50,7 @@ static int aea_read_probe(AVProbeData *p)
          * the block size mode and info byte can't be the same
          */
         if (bsm_s == bsm_e && inb_s == inb_e && bsm_s != inb_s)
-            return AVPROBE_SCORE_MAX/2;
+            return AVPROBE_SCORE_MAX / 2;
     }
     return 0;
 }
@@ -78,7 +78,7 @@ static int aea_read_header(AVFormatContext *s,
         return -1;
     }
 
-    st->codec->channel_layout = (st->codec->channels==1) ? CH_LAYOUT_MONO : CH_LAYOUT_STEREO;
+    st->codec->channel_layout = (st->codec->channels == 1) ? CH_LAYOUT_MONO : CH_LAYOUT_STEREO;
 
     st->codec->block_align = AT1_SU_SIZE * st->codec->channels;
     return 0;

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list