diff options
author | Georg Lippitsch <georg.lippitsch@gmx.at> | 2015-01-18 20:44:33 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-08 04:31:27 +0100 |
commit | 97a27065c88c3486e46da1470a0161ce43890f3e (patch) | |
tree | 83948d2cddddfec4b389501613e2f51227262feb /libavdevice/decklink_common_c.h | |
parent | 6a8a3bfb873730c1c13a496c3afa37020a8328a2 (diff) | |
download | ffmpeg-97a27065c88c3486e46da1470a0161ce43890f3e.tar.gz |
avdevice/decklink: 10 Bit support for Decklink input device
Example to capture video clip at 1080i50 10 bit:
ffmpeg -bm_v210 1 -f decklink -i 'UltraStudio Mini Recorder@11' -acodec copy -vcodec copy output.avi
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavdevice/decklink_common_c.h')
-rw-r--r-- | libavdevice/decklink_common_c.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/decklink_common_c.h b/libavdevice/decklink_common_c.h index 861a51aa12..fb2b788628 100644 --- a/libavdevice/decklink_common_c.h +++ b/libavdevice/decklink_common_c.h @@ -28,5 +28,6 @@ struct decklink_cctx { int list_devices; int list_formats; double preroll; + int v210; }; |