[FFmpeg-devel] [PATCH 2/2] imdct15: replace the FFT with a faster PFA FFT algorithm

Rostislav Pehlivanov atomnuker at gmail.com
Wed Jan 4 14:17:05 EET 2017


On 4 January 2017 at 10:16, Rostislav Pehlivanov <atomnuker at gmail.com>
wrote:

>
> +    ff_fft_init(&s->ptwo_fft, N - 1, 1);
>
>
Forgot to check the return value here, changed locally to:

if (ff_fft_init(&s->ptwo_fft, N - 1, 1) < 0);
        goto fail;


More information about the ffmpeg-devel mailing list