On 17/12/15 13:28, Diego Biurrun wrote:
> ---
> libavcodec/webp.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/libavcodec/webp.c b/libavcodec/webp.c
> index c475744..7826cab 100644
> --- a/libavcodec/webp.c
> +++ b/libavcodec/webp.c
> @@ -1309,10 +1309,8 @@ static int vp8_lossy_decode_frame(AVCodecContext
> *avctx, AVFrame *p,
> }
> s->lossless = 0;
>
> - if (data_size > INT_MAX) {
> - av_log(avctx, AV_LOG_ERROR, "unsupported chunk size\n");
> - return AVERROR_PATCHWELCOME;
> - }
> + if (data_size > INT_MAX)
> + return AVERROR_INVALIDDATA;
>
> av_init_packet(&pkt);
> pkt.data = data_start;
>
Is it confirmed as not supported by the format?
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel