Re: [libav-devel] [PATCH] av1: Add libaom decoding support

2016-08-09 Thread Luca Barbato
On 09/08/16 18:35, Diego Biurrun wrote: > What is the license of libaom? Copyright (c) 2016, Alliance for Open Media. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1.

Re: [libav-devel] [PATCH] av1: Add libaom decoding support

2016-08-09 Thread Luca Barbato
On 09/08/16 18:41, James Almer wrote: > On 8/9/2016 1:29 PM, Luca Barbato wrote: >> +enum AVPixelFormat ff_aom_imgfmt_to_pixfmt(aom_img_fmt_t img) >> +{ >> +switch (img) { >> +case AOM_IMG_FMT_RGB24: return AV_PIX_FMT_RGB24; >> +case AOM_IMG_FMT_RGB565:return

Re: [libav-devel] [PATCH] av1: Add libaom decoding support

2016-08-09 Thread James Almer
On 8/9/2016 1:29 PM, Luca Barbato wrote: > +enum AVPixelFormat ff_aom_imgfmt_to_pixfmt(aom_img_fmt_t img) > +{ > +switch (img) { > +case AOM_IMG_FMT_RGB24: return AV_PIX_FMT_RGB24; > +case AOM_IMG_FMT_RGB565:return AV_PIX_FMT_RGB565BE; > +case AOM_IMG_FMT_RGB555:return

Re: [libav-devel] [PATCH] av1: Add libaom decoding support

2016-08-09 Thread Diego Biurrun
On Tue, Aug 09, 2016 at 06:29:25PM +0200, Luca Barbato wrote: > Encoding support not added on purpose for now I'd drop that line; one is only left wondering about the reason. > --- a/Changelog > +++ b/Changelog > @@ -62,6 +62,7 @@ version : > - Intel QSV video scaling and deinterlacing filter >

[libav-devel] [PATCH] av1: Add libaom decoding support

2016-08-09 Thread Luca Barbato
Encoding support not added on purpose for now --- Changelog | 1 + configure | 4 ++ doc/general.texi | 10 libavcodec/Makefile| 2 + libavcodec/allcodecs.c | 1 + libavcodec/libaom.c| 79 libavcodec/libaom.h|