diff options
author | Francesco Lavra <francescolavra@interfree.it> | 2009-11-09 09:11:35 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-11-09 09:11:35 +0000 |
commit | 91cc5d37679b112d03c20d053905c3941c0a8992 (patch) | |
tree | 63de7240f7f22da61839db5cc9d50cc22562a59a /libavcodec/indeo2.c | |
parent | 66ddc150f0231889f9a05f71739ff1a40db9a01d (diff) | |
download | ffmpeg-91cc5d37679b112d03c20d053905c3941c0a8992.tar.gz |
Move ff_reverse in libavcodec to av_reverse in libavutil.
Patch by Francesco Lavra, francescolavra interfree it
Originally committed as revision 20484 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo2.c')
-rw-r--r-- | libavcodec/indeo2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/indeo2.c b/libavcodec/indeo2.c index 52aede19fe..6755014110 100644 --- a/libavcodec/indeo2.c +++ b/libavcodec/indeo2.c @@ -27,6 +27,7 @@ #include "avcodec.h" #include "get_bits.h" #include "indeo2data.h" +#include "libavutil/common.h" typedef struct Ir2Context{ AVCodecContext *avctx; @@ -160,7 +161,7 @@ static int ir2_decode_frame(AVCodecContext *avctx, /* decide whether frame uses deltas or not */ #ifndef ALT_BITSTREAM_READER_LE for (i = 0; i < buf_size; i++) - buf[i] = ff_reverse[buf[i]]; + buf[i] = av_reverse[buf[i]]; #endif start = 48; /* hardcoded for now */ |