mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
avutil/hwcontext_cuda: use proper synchronization flag
This commit is contained in:
parent
ba0e516533
commit
97e7f03d35
@ -283,7 +283,7 @@ static int cuda_device_create(AVHWDeviceContext *ctx, const char *device,
|
|||||||
return AVERROR_UNKNOWN;
|
return AVERROR_UNKNOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = cuCtxCreate(&hwctx->cuda_ctx, 0, cu_device);
|
err = cuCtxCreate(&hwctx->cuda_ctx, CU_CTX_SCHED_BLOCKING_SYNC, cu_device);
|
||||||
if (err != CUDA_SUCCESS) {
|
if (err != CUDA_SUCCESS) {
|
||||||
av_log(ctx, AV_LOG_ERROR, "Error creating a CUDA context\n");
|
av_log(ctx, AV_LOG_ERROR, "Error creating a CUDA context\n");
|
||||||
return AVERROR_UNKNOWN;
|
return AVERROR_UNKNOWN;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user