diff options
author | Gildas Fargeas <fargeas.gildas@gmail.com> | 2017-09-07 14:46:31 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2017-09-28 21:06:03 +0200 |
commit | cb8b729180cc3ccb85f6c0d2fa7190865cbc2cb7 (patch) | |
tree | debede8be361d5f89ea128c46cba74a432d494f1 /doc/indevs.texi | |
parent | 00a61f30a05a76d10e04253987202e41f8703ebe (diff) | |
download | ffmpeg-cb8b729180cc3ccb85f6c0d2fa7190865cbc2cb7.tar.gz |
avdevice/decklink_dec: add support for more pixel formats
The decklink input pixel format can now be specified with the 'raw_format'
option. The -bm_v210 option is now deprecated.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'doc/indevs.texi')
-rw-r--r-- | doc/indevs.texi | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/doc/indevs.texi b/doc/indevs.texi index 776e563160..c6f96c41ea 100644 --- a/doc/indevs.texi +++ b/doc/indevs.texi @@ -214,8 +214,9 @@ need to configure with the appropriate @code{--extra-cflags} and @code{--extra-ldflags}. On Windows, you need to run the IDL files through @command{widl}. -DeckLink is very picky about the formats it supports. Pixel format is -uyvy422 or v210, framerate and video size must be determined for your device with +DeckLink is very picky about the formats it supports. Pixel format of the +input can be set with @option{raw_format}. +Framerate and video size must be determined for your device with @command{-list_formats 1}. Audio sample rate is always 48 kHz and the number of channels can be 2, 8 or 16. Note that all audio channels are bundled in one single audio track. @@ -239,9 +240,26 @@ Note that there is a FourCC @option{'pal '} that can also be used as @option{pal} (3 letters). @item bm_v210 +This is a deprecated option, you can use @option{raw_format} instead. If set to @samp{1}, video is captured in 10 bit v210 instead of uyvy422. Not all Blackmagic devices support this option. +@item raw_format +Set the pixel format of the captured video. +Available values are: +@table @samp +@item uyvy422 + +@item yuv422p10 + +@item argb + +@item bgra + +@item rgb10 + +@end table + @item teletext_lines If set to nonzero, an additional teletext stream will be captured from the vertical ancillary data. Both SD PAL (576i) and HD (1080i or 1080p) |