diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-03 00:29:30 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-07-05 21:57:51 +0100 |
commit | 784514a4a8c621290fc5fa942ad286f9726475a9 (patch) | |
tree | ee9acf5e0f4143164667146aa847b6e402a75fb5 /libavcodec/flacdsp.h | |
parent | e43f56b205a6112451bba3da965f327850bf67a9 (diff) | |
download | ffmpeg-784514a4a8c621290fc5fa942ad286f9726475a9.tar.gz |
flacdec: add planar output support
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/flacdsp.h')
-rw-r--r-- | libavcodec/flacdsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacdsp.h b/libavcodec/flacdsp.h index fe5ca53177..16515539a6 100644 --- a/libavcodec/flacdsp.h +++ b/libavcodec/flacdsp.h @@ -29,6 +29,6 @@ typedef struct FLACDSPContext { int qlevel, int len); } FLACDSPContext; -void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt); +void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt, int bps); #endif /* AVCODEC_FLACDSP_H */ |