]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vmnc.c
mpegvideo_enc: only allocate output packet when we know there will be output
[ffmpeg] / libavcodec / vmnc.c
index f95bef7e1da9fd43917433616f6b1f46e5966b1f..8cc78fa4c0e810595c6351e6d64f37bf2b62c270 100644 (file)
@@ -509,15 +509,13 @@ static av_cold int decode_end(AVCodecContext *avctx)
 }
 
 AVCodec ff_vmnc_decoder = {
-    "vmnc",
-    AVMEDIA_TYPE_VIDEO,
-    CODEC_ID_VMNC,
-    sizeof(VmncContext),
-    decode_init,
-    NULL,
-    decode_end,
-    decode_frame,
-    CODEC_CAP_DR1,
+    .name           = "vmnc",
+    .type           = AVMEDIA_TYPE_VIDEO,
+    .id             = CODEC_ID_VMNC,
+    .priv_data_size = sizeof(VmncContext),
+    .init           = decode_init,
+    .close          = decode_end,
+    .decode         = decode_frame,
+    .capabilities   = CODEC_CAP_DR1,
     .long_name = NULL_IF_CONFIG_SMALL("VMware Screen Codec / VMware Video"),
 };
-