[FFmpeg-cvslog] xbmdec: s/av_reverse/ff_reverse
Paul B Mahol
git at videolan.org
Sat Oct 13 20:03:27 CEST 2012
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Oct 13 18:00:48 2012 +0000| [a5e0046a730b2eb44d7824d9519a0f2119aa7690] | committer: Paul B Mahol
xbmdec: s/av_reverse/ff_reverse
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a5e0046a730b2eb44d7824d9519a0f2119aa7690
---
libavcodec/xbmdec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavcodec/xbmdec.c b/libavcodec/xbmdec.c
index 130328f..4b8704a 100644
--- a/libavcodec/xbmdec.c
+++ b/libavcodec/xbmdec.c
@@ -22,6 +22,7 @@
#include "avcodec.h"
#include "internal.h"
+#include "mathops.h"
static av_cold int xbm_decode_init(AVCodecContext *avctx)
{
@@ -98,7 +99,7 @@ static int xbm_decode_frame(AVCodecContext *avctx, void *data,
ptr++;
if (isxdigit(*ptr))
val = (val << 4) + convert(*ptr);
- *dst++ = av_reverse[val];
+ *dst++ = ff_reverse[val];
} else {
av_log(avctx, AV_LOG_ERROR, "Unexpected data at '%.8s'\n", ptr);
return AVERROR_INVALIDDATA;
More information about the ffmpeg-cvslog
mailing list