[Ffmpeg-cvslog] r6626 - trunk/libavcodec/tta.c

diego subversion
Tue Oct 10 14:07:25 CEST 2006


Author: diego
Date: Tue Oct 10 14:07:25 2006
New Revision: 6626

Modified:
   trunk/libavcodec/tta.c

Log:
Rename SIGN macro to the more fitting UNFOLD.


Modified: trunk/libavcodec/tta.c
==============================================================================
--- trunk/libavcodec/tta.c	(original)
+++ trunk/libavcodec/tta.c	Tue Oct 10 14:07:25 2006
@@ -352,9 +352,9 @@
                     rice->k0++;
             }
 
-            // extract sign
-#define SIGN(x) (((x)&1) ? (++(x)>>1) : (-(x)>>1))
-            *p = SIGN(value);
+            // extract coded value
+#define UNFOLD(x) (((x)&1) ? (++(x)>>1) : (-(x)>>1))
+            *p = UNFOLD(value);
 
             // run hybrid filter
             ttafilter_process(filter, p, 0);




More information about the ffmpeg-cvslog mailing list