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/tiff.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/tiff.c')
-rw-r--r-- | libavcodec/tiff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 8818a66530..51e5f8ee63 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -31,6 +31,7 @@ #include "lzw.h" #include "tiff.h" #include "faxcompr.h" +#include "libavutil/common.h" typedef struct TiffContext { @@ -148,7 +149,7 @@ static int tiff_unpack_strip(TiffContext *s, uint8_t* dst, int stride, const uin memcpy(src2, src, size); }else{ for(i = 0; i < size; i++) - src2[i] = ff_reverse[src[i]]; + src2[i] = av_reverse[src[i]]; } memset(src2+size, 0, FF_INPUT_BUFFER_PADDING_SIZE); switch(s->compr){ |