mån 2025-06-09 klockan 20:06 +1000 skrev Peter Ross: > +static void convolve(float *tgt, const float *src, int len, int n) > +{ > + for (; n >= 0; n--) > + tgt[n] = ff_scalarproduct_float_c(src, src - n, len); > + > +}
This should probably use an FFT since this implementation is O(n²). That doesn't need to hold up this patch though, since it just moves the existing implementation /Tomas _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".