summaryrefslogtreecommitdiff
path: root/libavcodec/wnv1.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/wnv1.c')
-rw-r--r--libavcodec/wnv1.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/wnv1.c b/libavcodec/wnv1.c
index ae815a65a9..156a8a09a4 100644
--- a/libavcodec/wnv1.c
+++ b/libavcodec/wnv1.c
@@ -134,13 +134,13 @@ static av_cold int decode_init(AVCodecContext *avctx)
return 0;
}
-const AVCodec ff_wnv1_decoder = {
- .name = "wnv1",
- .long_name = NULL_IF_CONFIG_SMALL("Winnov WNV1"),
- .type = AVMEDIA_TYPE_VIDEO,
- .id = AV_CODEC_ID_WNV1,
+const FFCodec ff_wnv1_decoder = {
+ .p.name = "wnv1",
+ .p.long_name = NULL_IF_CONFIG_SMALL("Winnov WNV1"),
+ .p.type = AVMEDIA_TYPE_VIDEO,
+ .p.id = AV_CODEC_ID_WNV1,
.init = decode_init,
.decode = decode_frame,
- .capabilities = AV_CODEC_CAP_DR1,
+ .p.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};