diff options
author | Janne Grunau <janne-libav@jannau.net> | 2012-10-10 19:16:09 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-10-10 21:24:32 +0200 |
commit | 6d556e8327f6275c807c6da7257f617c256fe759 (patch) | |
tree | 26c307458efeaa405052f50a9d4945ce37d2d4c9 /libavcodec/ivi_dsp.h | |
parent | bd141f5ec97f394d1043a2f9778d74ba1008db26 (diff) | |
download | ffmpeg-6d556e8327f6275c807c6da7257f617c256fe759.tar.gz |
indeo4/5: remove constant parameter num_bands from wavelet recomposition
Fixes bogus uninitialized value compiler and coverity warnings.
Diffstat (limited to 'libavcodec/ivi_dsp.h')
-rw-r--r-- | libavcodec/ivi_dsp.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/ivi_dsp.h b/libavcodec/ivi_dsp.h index 04385140f3..c46f8b2d8d 100644 --- a/libavcodec/ivi_dsp.h +++ b/libavcodec/ivi_dsp.h @@ -38,10 +38,9 @@ * @param[in] plane pointer to the descriptor of the plane being processed * @param[out] dst pointer to the destination buffer * @param[in] dst_pitch pitch of the destination buffer - * @param[in] num_bands number of wavelet bands to be processed */ void ff_ivi_recompose53(const IVIPlaneDesc *plane, uint8_t *dst, - const int dst_pitch, const int num_bands); + const int dst_pitch); /** * Haar wavelet recomposition filter for Indeo 4 @@ -49,10 +48,9 @@ void ff_ivi_recompose53(const IVIPlaneDesc *plane, uint8_t *dst, * @param[in] plane pointer to the descriptor of the plane being processed * @param[out] dst pointer to the destination buffer * @param[in] dst_pitch pitch of the destination buffer - * @param[in] num_bands number of wavelet bands to be processed */ void ff_ivi_recompose_haar(const IVIPlaneDesc *plane, uint8_t *dst, - const int dst_pitch, const int num_bands); + const int dst_pitch); /** * two-dimensional inverse Haar 8x8 transform for Indeo 4 |