Browse Source

avcodec/hnm4video: Don't reimplement FFSWAP()

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.4
Andreas Rheinhardt 5 years ago
parent
commit
dff4012ab7
1 changed files with 1 additions and 10 deletions
  1. +1
    -10
      libavcodec/hnm4video.c

+ 1
- 10
libavcodec/hnm4video.c View File

@@ -387,15 +387,6 @@ static void hnm_update_palette(AVCodecContext *avctx, uint8_t *src,
}
}

static void hnm_flip_buffers(Hnm4VideoContext *hnm)
{
uint8_t *temp;

temp = hnm->current;
hnm->current = hnm->previous;
hnm->previous = temp;
}

static int hnm_decode_frame(AVCodecContext *avctx, void *data,
int *got_frame, AVPacket *avpkt)
{
@@ -450,7 +441,7 @@ static int hnm_decode_frame(AVCodecContext *avctx, void *data,
frame->key_frame = 0;
memcpy(frame->data[1], hnm->palette, 256 * 4);
*got_frame = 1;
hnm_flip_buffers(hnm);
FFSWAP(uint8_t *, hnm->current, hnm->previous);
} else {
av_log(avctx, AV_LOG_ERROR, "invalid chunk id: %d\n", chunk_id);
return AVERROR_INVALIDDATA;


Loading…
Cancel
Save