Skip to content
Snippets Groups Projects
Commit 3217a706 authored by Timothy Gu's avatar Timothy Gu Committed by Michael Niedermayer
Browse files

libxvid: Reduce the size of an array


It is not possible to have a plugin[] array with 5 or more elements.

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 1ccc2157
No related branches found
No related tags found
No related merge requests found
......@@ -364,7 +364,7 @@ static av_cold int xvid_encode_init(AVCodecContext *avctx) {
xvid_plugin_ssim_t ssim = { 0 };
xvid_gbl_init_t xvid_gbl_init = { 0 };
xvid_enc_create_t xvid_enc_create = { 0 };
xvid_enc_plugin_t plugins[7];
xvid_enc_plugin_t plugins[4];
x->twopassfd = -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment