Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-19 Thread James Zern
On Fri, Jul 15, 2016 at 3:29 PM, James Zern wrote: > On Thu, Jul 14, 2016 at 8:16 PM, James Zern wrote: >> On Thu, Jul 14, 2016 at 12:15 PM, Vignesh Venkatasubramanian >> wrote: >>> +ret = vpx_init( >>> +

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-15 Thread James Zern
On Thu, Jul 14, 2016 at 8:16 PM, James Zern wrote: > On Thu, Jul 14, 2016 at 12:15 PM, Vignesh Venkatasubramanian > wrote: >> +ret = vpx_init( >> +avctx, >> +(avctx->codec_id ==

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-14 Thread James Almer
On 7/15/2016 12:31 AM, James Zern wrote: > On Tue, Jul 12, 2016 at 1:47 PM, James Almer wrote: >> What's the first libvpx version that supports vp8a and vp9a? >> Configure currently checks for 0.9.1 as the oldest supported >> version for vp8 decoding, 0.9.7 for vp8 encoding,

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-14 Thread James Zern
On Tue, Jul 12, 2016 at 1:47 PM, James Almer wrote: > What's the first libvpx version that supports vp8a and vp9a? > Configure currently checks for 0.9.1 as the oldest supported > version for vp8 decoding, 0.9.7 for vp8 encoding, and 1.3.0 for > both vp9 components. We then use

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-14 Thread James Zern
On Thu, Jul 14, 2016 at 12:15 PM, Vignesh Venkatasubramanian wrote: > +ret = vpx_init( > +avctx, > +(avctx->codec_id == AV_CODEC_ID_VP8) ? > +_codec_vp8_dx_algo : _codec_vp9_dx_algo,

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-14 Thread James Zern
On Tue, Jul 12, 2016 at 11:48 AM, Vignesh Venkatasubramanian wrote: > On Mon, Jul 11, 2016 at 5:55 PM, James Zern > wrote: >> On Thu, Jul 7, 2016 at 11:43 AM, Vignesh Venkatasubramanian >>

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-14 Thread Vignesh Venkatasubramanian
On Tue, Jul 12, 2016 at 1:47 PM, James Almer wrote: > On 7/12/2016 3:48 PM, Vignesh Venkatasubramanian wrote: >> VPx (VP8/VP9) alpha encoding has been part of FFmpeg. Now, add the >> ability to decode such files with alpha channel. >> >> Signed-off-by: Vignesh

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-12 Thread James Almer
On 7/12/2016 3:48 PM, Vignesh Venkatasubramanian wrote: > VPx (VP8/VP9) alpha encoding has been part of FFmpeg. Now, add the > ability to decode such files with alpha channel. > > Signed-off-by: Vignesh Venkatasubramanian > --- > libavcodec/libvpxdec.c | 102

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-12 Thread James Almer
On 7/12/2016 3:48 PM, Vignesh Venkatasubramanian wrote: > VPx (VP8/VP9) alpha encoding has been part of FFmpeg. Now, add the > ability to decode such files with alpha channel. > > Signed-off-by: Vignesh Venkatasubramanian > --- > libavcodec/libvpxdec.c | 102

[FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-12 Thread Vignesh Venkatasubramanian
VPx (VP8/VP9) alpha encoding has been part of FFmpeg. Now, add the ability to decode such files with alpha channel. Signed-off-by: Vignesh Venkatasubramanian --- libavcodec/libvpxdec.c | 102 +--- tests/fate/vpx.mak | 3 +

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-12 Thread Vignesh Venkatasubramanian
On Mon, Jul 11, 2016 at 5:55 PM, James Zern wrote: > On Thu, Jul 7, 2016 at 11:43 AM, Vignesh Venkatasubramanian > wrote: >> VPx (VP8/VP9) alpha encoding has been part of FFmpeg. Now, add the >> ability to decode such files with

Re: [FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-11 Thread James Zern
On Thu, Jul 7, 2016 at 11:43 AM, Vignesh Venkatasubramanian wrote: > VPx (VP8/VP9) alpha encoding has been part of FFmpeg. Now, add the > ability to decode such files with alpha channel. > > Signed-off-by: Vignesh Venkatasubramanian > --- >

[FFmpeg-devel] [PATCH] libavcodec/libvpx: Add VPx alpha decode support

2016-07-07 Thread Vignesh Venkatasubramanian
VPx (VP8/VP9) alpha encoding has been part of FFmpeg. Now, add the ability to decode such files with alpha channel. Signed-off-by: Vignesh Venkatasubramanian --- libavcodec/libvpxdec.c | 111 --- tests/fate/vpx.mak | 3