[SCM] libav/experimental: cosmetics: fix comment after change in clipping range

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 17:20:43 UTC 2013


The following commit has been merged in the experimental branch:
commit 1ce9d6b85fea7c4d209d9e54009177ccf4b91222
Author: Justin Ruggles <justin.ruggles at gmail.com>
Date:   Wed Dec 22 12:28:02 2010 +0000

    cosmetics: fix comment after change in clipping range
    
    Originally committed as revision 26072 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c
index 200fff4..836b97c 100644
--- a/libavcodec/ac3enc.c
+++ b/libavcodec/ac3enc.c
@@ -43,7 +43,7 @@
 /** Scale a float value by 2^bits and convert to an integer. */
 #define SCALE_FLOAT(a, bits) lrintf((a) * (float)(1 << (bits)))
 
-/** Scale a float value by 2^15, convert to an integer, and clip to int16_t range. */
+/** Scale a float value by 2^15, convert to an integer, and clip to range -32767..32767. */
 #define FIX15(a) av_clip(SCALE_FLOAT(a, 15), -32767, 32767)
 
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list