2009/8/3 Robert Swain <[email protected]>:
> Hey,
>
> 2009/8/3 Colin McQuillan <[email protected]>:
>> Should Summer Of Code students commit to FFmpeg svn? I had a QCELP
>> patch ok'd but the maintainer isn't around.
>
> No, not straight away. Commit rights are earned later. :)
>
> I gave Reynaldo a nudge to see if he was around to commit it or OK it.
> I'll send him an e-mail else commit it myself, though he's usually
> responsive.
>
> Regards,
> Rob

Thanks! I also have this very small correction which shouldn't be controversial.
Index: libavcodec/celp_filters.c
===================================================================
--- libavcodec/celp_filters.c	(revision 19571)
+++ libavcodec/celp_filters.c	(working copy)
@@ -110,6 +110,6 @@ void ff_celp_lp_zero_synthesis_filterf(float *out,
     for (n = 0; n < buffer_length; n++) {
         out[n] = in[n];
         for (i = 1; i < filter_length; i++)
-            out[n] -= filter_coeffs[i-1] * in[n-i];
+            out[n] += filter_coeffs[i-1] * in[n-i];
     }
 }
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to