summaryrefslogtreecommitdiff
path: root/libavcodec/v210x.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/v210x.c')
-rw-r--r--libavcodec/v210x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/v210x.c b/libavcodec/v210x.c
index 96594e2a43..55630fa2fb 100644
--- a/libavcodec/v210x.c
+++ b/libavcodec/v210x.c
@@ -62,7 +62,7 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *pic,
vdst = (uint16_t *)pic->data[2];
yend = ydst + width;
pic->pict_type = AV_PICTURE_TYPE_I;
- pic->key_frame = 1;
+ pic->flags |= AV_FRAME_FLAG_KEY;
for (;;) {
uint32_t v = av_be2ne32(*src++);