[SCM] libav/experimental: cosmetic: use hex value instead of decimal to show relation to 0x7FFFFF

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:25:37 UTC 2013


The following commit has been merged in the experimental branch:
commit 7645da9194a5e06b5811e50c74ba506e4a762692
Author: Justin Ruggles <justin.ruggles at gmail.com>
Date:   Sat Jul 19 02:54:54 2008 +0000

    cosmetic: use hex value instead of decimal to show relation to 0x7FFFFF
    
    Originally committed as revision 14290 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index bd1310b..8f62d7f 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -437,7 +437,7 @@ static void get_transform_coeffs_ch(AC3DecodeContext *s, int ch_index, mant_grou
         tbap = bap[i];
         switch (tbap) {
             case 0:
-                coeffs[i] = (av_random(&s->dith_state) & 0x7FFFFF) - 4194304;
+                coeffs[i] = (av_random(&s->dith_state) & 0x7FFFFF) - 0x400000;
                 break;
 
             case 1:

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list