Re: [FFmpeg-devel] [PATCH 4/5] avfilter/vf_thumbnail_cuda: Switch to using ffnvcodec

2019-02-22 Thread Philip Langdale
On Fri, 22 Feb 2019 05:46:12 + Soft Works wrote: > > Subject: [FFmpeg-devel] [PATCH 4/5] avfilter/vf_thumbnail_cuda: > > Switch to using ffnvcodec > > > > This change switches the vf_thumbnail_cuda filter from using the > > full cuda sdk to using th

Re: [FFmpeg-devel] [PATCH 4/5] avfilter/vf_thumbnail_cuda: Switch to using ffnvcodec

2019-02-21 Thread Soft Works
> Subject: [FFmpeg-devel] [PATCH 4/5] avfilter/vf_thumbnail_cuda: Switch to > using ffnvcodec > > This change switches the vf_thumbnail_cuda filter from using the > full cuda sdk to using the ffnvcodec headers and loader. > > Most of the change is a direct mapping, but

[FFmpeg-devel] [PATCH 4/5] avfilter/vf_thumbnail_cuda: Switch to using ffnvcodec

2019-02-20 Thread Philip Langdale
This change switches the vf_thumbnail_cuda filter from using the full cuda sdk to using the ffnvcodec headers and loader. Most of the change is a direct mapping, but I also switched from using texture references to using texture objects. This is supposed to be the preferred way of using textures,