mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Set AVFrame reference before reget_buffer.
Otherwise it might return a write-only frame which would break decoding completely. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
266f6eefc6
commit
d9010daa6f
@ -189,6 +189,7 @@ static int roq_decode_frame(AVCodecContext *avctx,
|
||||
RoqContext *s = avctx->priv_data;
|
||||
int copy= !s->current_frame->data[0];
|
||||
|
||||
s->current_frame->reference = 3;
|
||||
if (avctx->reget_buffer(avctx, s->current_frame)) {
|
||||
av_log(avctx, AV_LOG_ERROR, " RoQ: get_buffer() failed\n");
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user