[SCM] libav/experimental: cosmetics: remove one unneeded space

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:33:44 UTC 2013


The following commit has been merged in the experimental branch:
commit efeb298ea0d3132ed62a15da89f76db7aabe4bfa
Author: Kostya Shishkov <kostya.shishkov at gmail.com>
Date:   Thu Dec 18 06:00:12 2008 +0000

    cosmetics: remove one unneeded space
    
    Originally committed as revision 16211 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/dpcm.c b/libavcodec/dpcm.c
index ff684ae..74ca9ec 100644
--- a/libavcodec/dpcm.c
+++ b/libavcodec/dpcm.c
@@ -268,7 +268,7 @@ static int dpcm_decode_frame(AVCodecContext *avctx,
                 n1 = (buf[in] >> 4) & 0xF;
                 n2 = buf[in++] & 0xF;
                 s->sample[0] += s->sol_table[n1];
-                 if (s->sample[0] < 0) s->sample[0] = 0;
+                if (s->sample[0] < 0) s->sample[0] = 0;
                 if (s->sample[0] > 255) s->sample[0] = 255;
                 output_samples[out++] = (s->sample[0] - 128) << 8;
                 s->sample[s->channels - 1] += s->sol_table[n2];

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list