Rename SIGN macro to the more fitting UNFOLD.
authorDiego Biurrun <diego@biurrun.de>
Tue, 10 Oct 2006 12:07:25 +0000 (12:07 +0000)
committerDiego Biurrun <diego@biurrun.de>
Tue, 10 Oct 2006 12:07:25 +0000 (12:07 +0000)
Originally committed as revision 6626 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/tta.c

index bf70649..82713fb 100644 (file)
@@ -352,9 +352,9 @@ static int tta_decode_frame(AVCodecContext *avctx,
                     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);