On Mon, Jan 14, 2019 at 07:02:47AM +1100, Peter Ross wrote:
> ---
>  libavcodec/vp56.c    | 10 ++++++++++
>  libavcodec/vp56.h    |  1 +
>  libavcodec/vp56dsp.c | 19 -------------------
>  3 files changed, 11 insertions(+), 19 deletions(-)
> 
> diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c
> index 27b4b8b944..c5c5a9fb65 100644
> --- a/libavcodec/vp56.c
> +++ b/libavcodec/vp56.c
> @@ -33,6 +33,8 @@
>  
>  void ff_vp56_init_dequant(VP56Context *s, int quantizer)
>  {
> +    if (s->quantizer != quantizer)
> +        ff_vp3dsp_set_bounding_values(s->bounding_values_array, 
> ff_vp56_filter_threshold[quantizer]);

maybe ive missed something but this fails to build

libavcodec/vp56.c: In function ‘ff_vp56_init_dequant’:
libavcodec/vp56.c:37:9: error: implicit declaration of function 
‘ff_vp3dsp_set_bounding_values’ [-Werror=implicit-function-declaration]
         ff_vp3dsp_set_bounding_values(s->bounding_values_array, 
ff_vp56_filter_threshold[quantizer]);
         ^
cc1: some warnings being treated as errors
make: *** [libavcodec/vp56.o] Error 1
make: *** Waiting for unfinished jobs....


[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Dictatorship naturally arises out of democracy, and the most aggravated
form of tyranny and slavery out of the most extreme liberty. -- Plato

Attachment: signature.asc
Description: PGP signature

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to