Re: [FFmpeg-devel] [PATCH] avcodec/zmbv: Call decode_intra directly

2019-10-19 Thread Michael Niedermayer
On Sat, Oct 19, 2019 at 04:25:07PM +0200, Paul B Mahol wrote: > LGTM will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB If a bugfix only changes things apparently unrelated to the bug with no further explanation, that is a good sign that the bugfix

Re: [FFmpeg-devel] [PATCH] avcodec/zmbv: Call decode_intra directly

2019-10-19 Thread Paul B Mahol
LGTM On 10/17/19, Andreas Rheinhardt wrote: > zmbv has only one function for decoding intra frames, namely > decode_intra; and yet up until now it has been called via a function > pointer. This has been changed. > > This also removes spec-incompliant conversions between function pointers > and po

[FFmpeg-devel] [PATCH] avcodec/zmbv: Call decode_intra directly

2019-10-17 Thread Andreas Rheinhardt
zmbv has only one function for decoding intra frames, namely decode_intra; and yet up until now it has been called via a function pointer. This has been changed. This also removes spec-incompliant conversions between function pointers and pointers of type void * and thereby fixes the warning "ISO