]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/lpc.h
Merge commit 'd75190aa93206c02cb4f18a66d2c927d6a0198e1'
[ffmpeg] / libavcodec / lpc.h
index 9e0b056338938a8256959153b8075c840b705c52..96acb371467d279263f104d813d8e57a97057b77 100644 (file)
@@ -24,6 +24,7 @@
 
 #include <stdint.h>
 #include "libavutil/avassert.h"
+#include "libavutil/lls.h"
 
 #define ORDER_METHOD_EST     0
 #define ORDER_METHOD_2LEVEL  1
@@ -79,6 +80,9 @@ typedef struct LPCContext {
      */
     void (*lpc_compute_autocorr)(const double *data, int len, int lag,
                                  double *autoc);
+
+    // TODO: these should be allocated to reduce ABI compatibility issues
+    LLSModel lls_models[2];
 } LPCContext;