diff --git a/libavcodec/nvdec_vp8.c b/libavcodec/nvdec_vp8.c
index f29a66ac72..901bfc1abc 100644
--- a/libavcodec/nvdec_vp8.c
+++ b/libavcodec/nvdec_vp8.c
@@ -70,12 +70,11 @@ static int nvdec_vp8_start_frame(AVCodecContext *avctx, const uint8_t *buffer, u
*/
{
{
- .frame_type = !h->keyframe,
- .version = h->profile,
- .show_frame = !h->invisible,
- .update_mb_segmentation_data = h->segmentation.enabled ?
- h->segmentation.update_feature_data :
- 0,
+ !h->keyframe,
+ h->profile,
+ !h->invisible,
+ h->segmentation.enabled ?
+ h->segmentation.update_feature_data : 0,
}
}
}