Rename SIGN macro to the more fitting UNFOLD.

Originally committed as revision 6626 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2006-10-10 12:07:25 +00:00
parent 6b6b5003de
commit 15e35274d8

View File

@ -352,9 +352,9 @@ static int tta_decode_frame(AVCodecContext *avctx,
rice->k0++; rice->k0++;
} }
// extract sign // extract coded value
#define SIGN(x) (((x)&1) ? (++(x)>>1) : (-(x)>>1)) #define UNFOLD(x) (((x)&1) ? (++(x)>>1) : (-(x)>>1))
*p = SIGN(value); *p = UNFOLD(value);
// run hybrid filter // run hybrid filter
ttafilter_process(filter, p, 0); ttafilter_process(filter, p, 0);