Commit 296bcdd2 authored by Paul B Mahol's avatar Paul B Mahol

paf: use reget_bufer() instead of get_buffer()

Pallete is written to frame->data[1] only if it changes.
This fixes PAL8->PAL8 transcoding.
Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent c36bad3b
...@@ -247,11 +247,8 @@ static int paf_vid_decode(AVCodecContext *avctx, void *data, ...@@ -247,11 +247,8 @@ static int paf_vid_decode(AVCodecContext *avctx, void *data,
uint8_t code, *dst, *src, *end; uint8_t code, *dst, *src, *end;
int i, frame, ret; int i, frame, ret;
if (c->pic.data[0]) c->pic.reference = 3;
avctx->release_buffer(avctx, &c->pic); if ((ret = avctx->reget_buffer(avctx, &c->pic)) < 0)
c->pic.reference = 0;
if ((ret = avctx->get_buffer(avctx, &c->pic)) < 0)
return ret; return ret;
bytestream2_init(&c->gb, pkt->data, pkt->size); bytestream2_init(&c->gb, pkt->data, pkt->size);
......
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