diff options
author | Marton Balint <cus@passwd.hu> | 2019-08-21 23:02:51 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-01-03 18:13:22 +0100 |
commit | 944203270dc37b9cbbc3ead9dfc3fba6bc009789 (patch) | |
tree | 418e2aed1ff98782262c913473b20e0ced721e74 /libavdevice/decklink_dec.cpp | |
parent | 2b7097ef2795c78c264e2cb81b4ad8254eb13c60 (diff) | |
download | ffmpeg-944203270dc37b9cbbc3ead9dfc3fba6bc009789.tar.gz |
avdevice/decklink: deprecate the -list_devices option
The user should use ffmpeg -sources decklink or ffmpeg -sinks decklink instead.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavdevice/decklink_dec.cpp')
-rw-r--r-- | libavdevice/decklink_dec.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index 0360bd16fb..1fd5adf515 100644 --- a/libavdevice/decklink_dec.cpp +++ b/libavdevice/decklink_dec.cpp @@ -1050,6 +1050,7 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx) /* List available devices. */ if (ctx->list_devices) { + av_log(avctx, AV_LOG_WARNING, "The -list_devices option is deprecated and will be removed. Please use ffmpeg -sources decklink instead.\n"); ff_decklink_list_devices_legacy(avctx, 1, 0); return AVERROR_EXIT; } |