summaryrefslogtreecommitdiffstats
path: root/libavcodec/cabac.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-10-11 23:17:58 +0000
committerDiego Biurrun <diego@biurrun.de>2006-10-11 23:17:58 +0000
commitc26abfa5414becf3dd68d976ef5851c5cab477b6 (patch)
tree5a98401cf286223f51c29c0eab36f2a33b5f12e3 /libavcodec/cabac.h
parent02305ff38ffcc41a72fc1cb79c028b724d2d795d (diff)
downloadffmpeg-streaming-c26abfa5414becf3dd68d976ef5851c5cab477b6.zip
ffmpeg-streaming-c26abfa5414becf3dd68d976ef5851c5cab477b6.tar.gz
Rename ABS macro to FFABS.
Originally committed as revision 6666 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r--libavcodec/cabac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index 3721230..e3a2aa8 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -219,7 +219,7 @@ static void put_cabac_ueg(CABACContext *c, uint8_t * state, int v, int max, int
else{
const int sign= v < 0;
- if(is_signed) v= ABS(v);
+ if(is_signed) v= FFABS(v);
if(v<max){
for(i=0; i<v; i++){
OpenPOWER on IntegriCloud