diff --git a/libavcodec/dv.c b/libavcodec/dv.c index bc750bcbc6abb60b61a827e58c4ce73ce2e66665..d2739d33b76cb5b826b1835e00737e2ab9397bbb 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -897,6 +897,8 @@ static int dvvideo_decode_frame(AVCodecContext *avctx, avctx->release_buffer(avctx, &s->picture); s->picture.reference = 0; + s->picture.key_frame = 1; + s->picture.pict_type = FF_I_TYPE; avctx->pix_fmt = s->sys->pix_fmt; avctx->width = s->sys->width; avctx->height = s->sys->height; @@ -933,6 +935,8 @@ static int dvvideo_encode_frame(AVCodecContext *c, uint8_t *buf, int buf_size, c->pix_fmt = s->sys->pix_fmt; s->picture = *((AVFrame *)data); + s->picture.key_frame = 1; + s->picture.pict_type = FF_I_TYPE; s->buf = buf; c->execute(c, dv_encode_mt, (void**)&dv_anchor[0], NULL,