xbmdec: s/av_reverse/ff_reverse

Signed-off-by: Paul B Mahol <onemda@gmail.com>
pull/6/head
Paul B Mahol 12 years ago
parent 183117fed7
commit a5e0046a73
  1. 3
      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;

Loading…
Cancel
Save