Re: [FFmpeg-devel] [PATCH 3/6] avutil/hwcontext_cuda: add CUstream in cuda hwctx

2018-05-08 Thread Oscar Amoros Huguet
de mayo de 2018 17:55 Para: ffmpeg-devel@ffmpeg.org Asunto: Re: [FFmpeg-devel] [PATCH 3/6] avutil/hwcontext_cuda: add CUstream in cuda hwctx On Tue, 8 May 2018 17:48:21 +0200 Timo Rothenpieler <t...@rothenpieler.org> wrote: > Am 08.05.2018 um 17:26 schrieb wm4: > > On Tue, 8 May 2018

Re: [FFmpeg-devel] [PATCH 3/6] avutil/hwcontext_cuda: add CUstream in cuda hwctx

2018-05-08 Thread Timo Rothenpieler
What is this? https://docs.nvidia.com/cuda/cuda-driver-api/stream-sync-behavior.html It allows asynchronous processing of CUDA workloads. The next couple patches make use of it. There's no change in behaviour if it remains unset/NULL, but if you set one, the workload won't block the main CUDA

Re: [FFmpeg-devel] [PATCH 3/6] avutil/hwcontext_cuda: add CUstream in cuda hwctx

2018-05-08 Thread wm4
On Tue, 8 May 2018 17:48:21 +0200 Timo Rothenpieler wrote: > Am 08.05.2018 um 17:26 schrieb wm4: > > On Tue, 8 May 2018 15:31:29 +0200 > > Timo Rothenpieler wrote: > > > >> --- > >> configure | 6 -- > >> doc/APIchanges

Re: [FFmpeg-devel] [PATCH 3/6] avutil/hwcontext_cuda: add CUstream in cuda hwctx

2018-05-08 Thread Timo Rothenpieler
Am 08.05.2018 um 17:26 schrieb wm4: On Tue, 8 May 2018 15:31:29 +0200 Timo Rothenpieler wrote: --- configure | 6 -- doc/APIchanges | 3 ++- libavutil/hwcontext_cuda.c | 3 +++ libavutil/hwcontext_cuda.h | 1 +

Re: [FFmpeg-devel] [PATCH 3/6] avutil/hwcontext_cuda: add CUstream in cuda hwctx

2018-05-08 Thread wm4
On Tue, 8 May 2018 15:31:29 +0200 Timo Rothenpieler wrote: > --- > configure | 6 -- > doc/APIchanges | 3 ++- > libavutil/hwcontext_cuda.c | 3 +++ > libavutil/hwcontext_cuda.h | 1 + > libavutil/version.h| 2 +- > 5 files

[FFmpeg-devel] [PATCH 3/6] avutil/hwcontext_cuda: add CUstream in cuda hwctx

2018-05-08 Thread Timo Rothenpieler
--- configure | 6 -- doc/APIchanges | 3 ++- libavutil/hwcontext_cuda.c | 3 +++ libavutil/hwcontext_cuda.h | 1 + libavutil/version.h| 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/configure b/configure index