diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2018-05-07 15:01:22 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2018-05-10 00:34:22 +0200 |
commit | c85568342741e0e1b48fc36c780342de8ad29be7 (patch) | |
tree | dea9adb3512522d1e25d98edaddfe61d95975cf9 /libavutil/hwcontext_cuda.h | |
parent | baabd3c2adb0fd1234fd7756e0b1861233753a1e (diff) | |
download | ffmpeg-c85568342741e0e1b48fc36c780342de8ad29be7.tar.gz |
avutil/hwcontext_cuda: add CUstream in cuda hwctx
Diffstat (limited to 'libavutil/hwcontext_cuda.h')
-rw-r--r-- | libavutil/hwcontext_cuda.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/hwcontext_cuda.h b/libavutil/hwcontext_cuda.h index 12dae8449e..81a0552cab 100644 --- a/libavutil/hwcontext_cuda.h +++ b/libavutil/hwcontext_cuda.h @@ -41,6 +41,7 @@ typedef struct AVCUDADeviceContextInternal AVCUDADeviceContextInternal; */ typedef struct AVCUDADeviceContext { CUcontext cuda_ctx; + CUstream stream; AVCUDADeviceContextInternal *internal; } AVCUDADeviceContext; |