summaryrefslogtreecommitdiff
path: root/libavcodec/flacdsp.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-07-02 13:51:04 +0100
committerMans Rullgard <mans@mansr.com>2012-07-04 12:24:30 +0100
commit25accf93ad7b0ad3e2a17718e689c05fbc5b5698 (patch)
treea67b8e49195709e0d75f48dd715896545c21fb86 /libavcodec/flacdsp.h
parent4a8528349f897fba72e6eb41400aca3ca4605a79 (diff)
flacdec: move lpc filter to flacdsp
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/flacdsp.h')
-rw-r--r--libavcodec/flacdsp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/flacdsp.h b/libavcodec/flacdsp.h
index bb289eea13..fe5ca53177 100644
--- a/libavcodec/flacdsp.h
+++ b/libavcodec/flacdsp.h
@@ -25,6 +25,8 @@
typedef struct FLACDSPContext {
void (*decorrelate[4])(uint8_t **out, int32_t **in, int channels,
int len, int shift);
+ void (*lpc)(int32_t *samples, const int coeffs[32], int order,
+ int qlevel, int len);
} FLACDSPContext;
void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt);