Re: [libav-devel] [PATCH 2/7] utvideodec: Support UQY2

2017-04-12 Thread Luca Barbato
On 11/04/2017 10:11, Diego Biurrun wrote: > extradata is uint8_t*, so this should be PRIu8. Maybe it could be done > in a separate patch though. It should since just above there is the same thing. I'd push this one now. lu ___ libav-devel mailing list

Re: [libav-devel] [PATCH 2/7] utvideodec: Support UQY2

2017-04-11 Thread Diego Biurrun
On Mon, Apr 10, 2017 at 12:42:55PM +0200, Luca Barbato wrote: > --- a/libavcodec/utvideodec.c > +++ b/libavcodec/utvideodec.c > @@ -484,28 +675,37 @@ static av_cold int decode_init(AVCodecContext *avctx) > -if (avctx->extradata_size < 16) { > +if (avctx->extradata_size >= 16) { > +

Re: [libav-devel] [PATCH 2/7] utvideodec: Support UQY2

2017-04-10 Thread Vittorio Giovara
On Mon, Apr 10, 2017 at 6:42 AM, Luca Barbato wrote: > From: Paul B Mahol > > Signed-off-by: Luca Barbato > --- > libavcodec/utvideo.c| 6 ++ > libavcodec/utvideo.h| 4 +- > libavcodec/utvideodec.c | 282 >

[libav-devel] [PATCH 2/7] utvideodec: Support UQY2

2017-04-10 Thread Luca Barbato
From: Paul B Mahol Signed-off-by: Luca Barbato --- libavcodec/utvideo.c| 6 ++ libavcodec/utvideo.h| 4 +- libavcodec/utvideodec.c | 282 +--- libavformat/riff.c | 1 + 4 files changed, 253