diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2016-09-22 12:10:31 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2016-09-23 11:17:49 +0200 |
commit | dcea61897647f2690dd76b3000841b5b0c032ab1 (patch) | |
tree | 3e8469de3bfc761d453be9fbdbb8f38197f01440 /libavcodec/cuvid.c | |
parent | 9777ba33f52c54cc982f977ce28e5d4b55927b72 (diff) | |
download | ffmpeg-dcea61897647f2690dd76b3000841b5b0c032ab1.tar.gz |
avcodec/cuvid: mark as avoid for probing
Diffstat (limited to 'libavcodec/cuvid.c')
-rw-r--r-- | libavcodec/cuvid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cuvid.c b/libavcodec/cuvid.c index ddf8b72efe..bd66f9ed14 100644 --- a/libavcodec/cuvid.c +++ b/libavcodec/cuvid.c @@ -913,7 +913,7 @@ static const AVOption options[] = { .send_packet = cuvid_decode_packet, \ .receive_frame = cuvid_output_frame, \ .flush = cuvid_flush, \ - .capabilities = AV_CODEC_CAP_DELAY, \ + .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AVOID_PROBING, \ .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_CUDA, \ AV_PIX_FMT_NV12, \ AV_PIX_FMT_NONE }, \ |