[FFmpeg-cvslog] vf_hwupload_cuda: Add min/max limits for device option
Ruta Gadkari
git at videolan.org
Fri Apr 14 01:56:57 EEST 2017
ffmpeg | branch: master | Ruta Gadkari <rgadkari at nvidia.com> | Thu Dec 8 15:22:46 2016 +0530| [dbfe60caca2e8323efa7aba6762dce7be2eba390] | committer: Vittorio Giovara
vf_hwupload_cuda: Add min/max limits for device option
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dbfe60caca2e8323efa7aba6762dce7be2eba390
---
libavfilter/vf_hwupload_cuda.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 },
};
More information about the ffmpeg-cvslog
mailing list