Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-12 Thread Mark Thompson
On 12/01/17 08:01, wm4 wrote: > On Sun, 8 Jan 2017 19:12:47 + > Mark Thompson wrote: > >> (cherry picked from commit ade370a4d7eab1866b6023c91c135d27c77ca465) >> --- >> One minor fixup for allocation due to differences in the lavfis, otherwise >> unchanged. >> >> configure

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-12 Thread wm4
On Sun, 8 Jan 2017 19:12:47 + Mark Thompson wrote: > (cherry picked from commit ade370a4d7eab1866b6023c91c135d27c77ca465) > --- > One minor fixup for allocation due to differences in the lavfis, otherwise > unchanged. > > configure | 1 + > libavfilter/Makefile

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Mark Thompson
On 09/01/17 00:29, Michael Niedermayer wrote: > On Sun, Jan 08, 2017 at 07:12:47PM +, Mark Thompson wrote: >> (cherry picked from commit ade370a4d7eab1866b6023c91c135d27c77ca465) >> --- >> One minor fixup for allocation due to differences in the lavfis, otherwise >> unchanged. > [...] >> diff

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Michael Niedermayer
On Sun, Jan 08, 2017 at 07:12:47PM +, Mark Thompson wrote: > (cherry picked from commit ade370a4d7eab1866b6023c91c135d27c77ca465) > --- > One minor fixup for allocation due to differences in the lavfis, otherwise > unchanged. [...] > diff --git a/libavfilter/vf_deinterlace_vaapi.c > b/libavfi

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Michael Niedermayer
On Sun, Jan 08, 2017 at 07:12:47PM +, Mark Thompson wrote: > (cherry picked from commit ade370a4d7eab1866b6023c91c135d27c77ca465) > --- > One minor fixup for allocation due to differences in the lavfis, otherwise > unchanged. [...] > diff --git a/libavfilter/vf_deinterlace_vaapi.c > b/libavfi

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Andy Furniss
Mark Thompson wrote: On 08/01/17 20:48, Andy Furniss wrote: Mark Thompson wrote: To offer a bit more information about this: It is adding a filter to dinterlace video on the GPU using VAAPI. This works on both Intel (i965) and AMD (mesa) Not so sure about the working with AMD/mesa bit. On g

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Mark Thompson
On 08/01/17 20:48, Andy Furniss wrote: > Mark Thompson wrote: > >> To offer a bit more information about this: >> >> It is adding a filter to dinterlace video on the GPU using VAAPI. >> This works on both Intel (i965) and AMD (mesa) > > Not so sure about the working with AMD/mesa bit. On git it d

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Andy Furniss
Mark Thompson wrote: To offer a bit more information about this: It is adding a filter to dinterlace video on the GPU using VAAPI. This works on both Intel (i965) and AMD (mesa) Not so sure about the working with AMD/mesa bit. On git it doesn't for me and I kind of didn't expect it to with th

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Paul B Mahol
On 1/8/17, Mark Thompson wrote: > On 08/01/17 19:27, Paul B Mahol wrote: >> On 1/8/17, Mark Thompson wrote: >>> + >>> +AVFilter ff_vf_deinterlace_vaapi = { >>> +.name = "deinterlace_vaapi", >>> +.description= NULL_IF_CONFIG_SMALL("Deinterlacing of VAAPI >>> surfaces"), >>> +

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Mark Thompson
On 08/01/17 19:27, Paul B Mahol wrote: > On 1/8/17, Mark Thompson wrote: >> + >> +AVFilter ff_vf_deinterlace_vaapi = { >> +.name = "deinterlace_vaapi", >> +.description= NULL_IF_CONFIG_SMALL("Deinterlacing of VAAPI >> surfaces"), >> +.priv_size = sizeof(DeintVAAPICon

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Mark Thompson
On 08/01/17 19:12, Mark Thompson wrote: > (cherry picked from commit ade370a4d7eab1866b6023c91c135d27c77ca465) > --- > One minor fixup for allocation due to differences in the lavfis, otherwise > unchanged. > > configure | 1 + > libavfilter/Makefile |

Re: [FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Paul B Mahol
On 1/8/17, Mark Thompson wrote: > + > +AVFilter ff_vf_deinterlace_vaapi = { > +.name = "deinterlace_vaapi", > +.description= NULL_IF_CONFIG_SMALL("Deinterlacing of VAAPI > surfaces"), > +.priv_size = sizeof(DeintVAAPIContext), > +.init = &deint_vaapi_in

[FFmpeg-devel] [PATCH] lavfi: Add VAAPI deinterlacer

2017-01-08 Thread Mark Thompson
(cherry picked from commit ade370a4d7eab1866b6023c91c135d27c77ca465) --- One minor fixup for allocation due to differences in the lavfis, otherwise unchanged. configure | 1 + libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libav