]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/lsp.c
qsv: Join the derived session to the parent
[ffmpeg] / libavcodec / lsp.c
index 8a05aede620724067224fa7e38cce47527f914f6..982c87eb1df098808851e3f0fa634f7e444261a5 100644 (file)
@@ -32,7 +32,7 @@ void ff_acelp_reorder_lsf(int16_t* lsfq, int lsfq_min_distance, int lsfq_min, in
 {
     int i, j;
 
-    /* sort lsfq in ascending order. float bubble agorithm,
+    /* sort lsfq in ascending order. float bubble algorithm,
        O(n) if data already sorted, O(n^2) - otherwise */
     for(i=0; i<lp_order-1; i++)
         for(j=i; j>=0 && lsfq[j] > lsfq[j+1]; j--)