diff options
author | James Darnley <james.darnley@gmail.com> | 2014-08-14 17:14:15 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-14 20:11:35 +0200 |
commit | 7ce6c021dc471c00aaff4f2245424bcb524374c8 (patch) | |
tree | 69ba7e4f0e90f6ccd031578bdc4ad31b35e99021 /libavcodec | |
parent | c6c345ea928bafc4097a1b99a8ce18556a38473e (diff) | |
download | ffmpeg-7ce6c021dc471c00aaff4f2245424bcb524374c8.tar.gz |
lavc/flacdsp: change lpc_encoder function pointer prototype
This should help to clarify the API.
Reviewed-by: Christophe Gisquet <christophe.gisquet@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-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 272cf2a674..14f3466b0b 100644 --- a/libavcodec/flacdsp.h +++ b/libavcodec/flacdsp.h @@ -28,7 +28,7 @@ typedef struct FLACDSPContext { void (*lpc)(int32_t *samples, const int coeffs[32], int order, int qlevel, int len); void (*lpc_encode)(int32_t *res, const int32_t *smp, int len, int order, - const int32_t *coefs, int shift); + const int32_t coefs[32], int shift); } FLACDSPContext; void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt, int bps); |