Commit 93fd90a4 authored by diego's avatar diego

Rename SIGN macro to the more fitting UNFOLD.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6626 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent de7cbc5c
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment