On Sun, Nov 27, 2022 at 06:03:38PM +0100, Anton Khirnov wrote: > --- [...] > diff --git a/libavcodec/libilbc.c b/libavcodec/libilbc.c > index 9ef6e16bc5..0787b5c313 100644 > --- a/libavcodec/libilbc.c > +++ b/libavcodec/libilbc.c > @@ -126,7 +126,8 @@ const FFCodec ff_libilbc_decoder = { ^^^^^^^ > .priv_data_size = sizeof(ILBCDecContext), > .init = ilbc_decode_init, > FF_CODEC_DECODE_CB(ilbc_decode_frame), ^^^^^^ > - .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF, > + .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF | > + AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE, I think you changed the wrong instance [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Old school: Use the lowest level language in which you can solve the problem conveniently. New school: Use the highest level language in which the latest supercomputer can solve the problem without the user falling asleep waiting.