From dbfe60caca2e8323efa7aba6762dce7be2eba390 Mon Sep 17 00:00:00 2001 From: Ruta Gadkari Date: Thu, 8 Dec 2016 15:04:46 +0530 Subject: vf_hwupload_cuda: Add min/max limits for device option --- libavfilter/vf_hwupload_cuda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_hwupload_cuda.c b/libavfilter/vf_hwupload_cuda.c index b5631c2b86..adb2e812dc 100644 --- a/libavfilter/vf_hwupload_cuda.c +++ b/libavfilter/vf_hwupload_cuda.c @@ -187,7 +187,7 @@ fail: #define OFFSET(x) offsetof(CudaUploadContext, x) #define FLAGS AV_OPT_FLAG_VIDEO_PARAM static const AVOption options[] = { - { "device", "Number of the device to use", OFFSET(device_idx), AV_OPT_TYPE_INT, { .i64 = 0 }, .flags = FLAGS }, + { "device", "Number of the device to use", OFFSET(device_idx), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, FLAGS }, { NULL }, }; -- cgit v1.2.3