Commit a5e0046a authored by Paul B Mahol's avatar Paul B Mahol

xbmdec: s/av_reverse/ff_reverse

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 183117fe
......@@ -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;
......
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