Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-03avdevice/decklink: deprecate the -list_devices optionMarton Balint
The user should use ffmpeg -sources decklink or ffmpeg -sinks decklink instead. Signed-off-by: Marton Balint <cus@passwd.hu>
2020-01-03avdevice/decklink_dec: remove -bm_v210 optionMarton Balint
Deprecated since Sep 28, 2017. Signed-off-by: Marton Balint <cus@passwd.hu>
2019-12-31avdevice/xcbgrab: capture the full desktop if video_size is not specifiedMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2019-11-18avdevice/decklink: add option to drop frames till timecode is seenGyan Doshi
Option wait_for_tc only takes effect if tc_format is set
2019-07-08doc/indevs: Add new option and example to avfoundation.Thilo Borgmann
2019-06-02doc/indevs: Add example using cropping to capture part of a planeMark Thompson
2019-03-20lavd: Remove libndi_newtekCarl Eugen Hoyos
2019-01-01doc/indevs: fix upto typoMichael Niedermayer
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2018-12-12doc/indevs: document libdc1394 optionsLou Logan
Signed-off-by: Lou Logan <lou@lrcd.com>
2018-12-11doc/indevs: fix hdvbuffer typo in iec61883 exampleLou Logan
Option name is dvbuffer. Signed-off-by: Lou Logan <lou@lrcd.com>
2018-11-01avdevice/libndi_newtek_dec: add extra_ips option to libndi_newtek allowing ↵Anton Platov
use remote network sources Signed-off-by: Anton Platov <anton@platov.net> Signed-off-by: Marton Balint <cus@passwd.hu>
2018-09-30avdevice/decklink_dec: add option to align capture start timeKarthick Jeyapal
This option is useful for maintaining input synchronization across N different hardware devices deployed for 'N-way' redundancy. The system time of different hardware devices should be synchronized with protocols such as NTP or PTP, before using this option. Signed-off-by: Marton Balint <cus@passwd.hu>
2018-09-23avdevice/decklink: add support for selecting devices based on their unique IDMarton Balint
Also bump the API version requirement to 10.9.5, because on olders versions there were some reports of crashes using the undocumented, yet available BMDDeckLinkDeviceHandle. Signed-off-by: Marton Balint <cus@passwd.hu>
2018-06-13doc/devices: order alphabetically and add missing v4l2 outdevLou Logan
Signed-off-by: Lou Logan <lou@lrcd.com>
2018-06-13avdevice/decklink_dec: capture timecode to metadata when requestedJon Morley
If the user provides a valid timecode_format look for timecode of that format in the capture and if found store it on the video avstream's metadata. Slightly modified by Marton Balint to capture per-frame timecode as well. Signed-off-by: Marton Balint <cus@passwd.hu>
2018-02-22avdevice: add android_camera indevFelix Matouschek
This commit adds an indev for Android devices on API level 24+ which uses the Android NDK Camera2 API to capture video from builtin cameras Signed-off-by: Felix Matouschek <felix@matouschek.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2018-01-20avdevice/decklink: addition of absolute wallclock option for pts sourceVishwanath Dixit
Signed-off-by: Marton Balint <cus@passwd.hu>
2018-01-20avdevice/decklink: addition of copyts optionVishwanath Dixit
Signed-off-by: Marton Balint <cus@passwd.hu>
2017-11-22avdevice/decklink_dec: autodetect the video input formatKarthick J
When -format_code is not specified autodetection will happen. Signed-off-by: Marton Balint <cus@passwd.hu>
2017-10-18avdevice/decklink_dec: 32 bit audio supportDave Rice
Signed-off-by: Marton Balint <cus@passwd.hu>
2017-10-04Merge commit '4141a5a240fba44b4b4a1c488c279d7dd8a11ec7'James Almer
* commit '4141a5a240fba44b4b4a1c488c279d7dd8a11ec7': Use modern avconv syntax for codec selection in documentation and tests Merged-by: James Almer <jamrial@gmail.com>
2017-09-28avdevice/decklink_dec: add support for more pixel formatsGildas Fargeas
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>
2017-09-27lavd: remove deprecated dv1394 deviceJosh de Kock
Support for this device has been removed in kernel since v2.6.37. dv1394 has been superseded by libiec61883 which is functionally equivalent. Signed-off-by: Josh de Kock <josh@itanimul.li> Signed-off-by: wm4 <nfxjfg@googlemail.com>
2017-09-14doc/indevs: Document kmsgrab input deviceMark Thompson
2017-09-04lavd: drop QTKit indevClément Bœsch
QTKit has been deprecated in favor of AVFoundation for years, and we have an avfoundation input device. See https://developer.apple.com/documentation/qtkit
2017-08-27lavd: implement NewTek NDI input/output device supportMaksym Veremeyenko
Signed-off-by: Marton Balint <cus@passwd.hu>
2017-08-22libavdevice/decklink: configurablity to set max queue sizeRavindra
Signed-off-by: Ravindra Patagar <rpatagar@akamai.com> Signed-off-by: Marton Balint <cus@passwd.hu>
2017-07-18avdevice/decklink_dec: add support for receiving op47 teletextMarton Balint
v2: - use uint16_t instead of int to store 10-bit ancillary data - fix ancillary line numbers for 1080p - some comments and clarifications as requested by Aaron Levinson Signed-off-by: Marton Balint <cus@passwd.hu>
2017-07-18avdevice/decklink_dec: add support for decoding teletext from 10bit ↵Marton Balint
ancillary data This also add supports for 4K DeckLink cards because they always output the ancillary data in 10-bit. v2: - only try teletext decoding for 576i PAL mode - some comments as requested by Aaron Levinson Signed-off-by: Marton Balint <cus@passwd.hu>
2017-03-22avdevice/decklink: new option 'format_code' to set video format by fourCCMatthias Hunstock
Signed-off-by: Matthias Hunstock <atze@fem.tu-ilmenau.de> Signed-off-by: Marton Balint <cus@passwd.hu>
2017-03-16doc: remove remaining legacy x11grab referencesClément Bœsch
2016-10-21lavd/decklink_dec: add option to disable drawing bars on signal lossMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2016-10-11doc: fix various typos and grammar errorsMoritz Barsnick
Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-06-26avdevice/decklink: add support for setting input packet timestamp sourceMarton Balint
Reviewed-by: Deti Fliegl <deti@fliegl.de> Signed-off-by: Marton Balint <cus@passwd.hu>
2016-06-26avdevice/decklink: add support for audio and video input selectionMarton Balint
Reviewed-by: Deti Fliegl <deti@fliegl.de> Signed-off-by: Marton Balint <cus@passwd.hu>
2016-06-26avdevice/decklink: add support for setting duplex modeMarton Balint
This patch also makes BlackMagic drivers v10.6.1 a hard requirement. Reviewed-by: Deti Fliegl <deti@fliegl.de> Signed-off-by: Marton Balint <cus@passwd.hu>
2016-05-04cosmetics: Fix spelling mistakesVittorio Giovara
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2016-02-03decklink: support all valid numbers of audio channelsMatthias Hunstock
As it is already written in the documentation, BMD DeckLink cards are capable of capturing 2, 8 or 16 audio channels (for SDI Inputs). Currently the value is hardcoded to 2. Introduces new option. Reviewed-by: Deti Fliegl <deti@fliegl.de> Signed-off-by: Matthias Hunstock <atze@fem.tu-ilmenau.de> Signed-off-by: Marton Balint <cus@passwd.hu>
2016-01-29lavd/decklink_dec: add support for teletextMarton Balint
It uses the libzvbi slicer, therefore teletext capture requires libzvbi. Reviewed-by: Deti Fliegl <deti@fliegl.de> Signed-off-by: Marton Balint <cus@passwd.hu>
2015-11-25doc/indevs: fix x11grab options consistencyStefano Sabatini
2015-11-25doc/indevs: Fix GermanTimothy Gu
2015-08-20doc/indevs: Remove non-existent decklink option examplesLou Logan
Forgotten in c5d0148. Found by Thomas Langhorst. Signed-off-by: Lou Logan <lou@lrcd.com>
2015-08-19doc/indevs: add various missing optionsLou Logan
Signed-off-by: Lou Logan <lou@lrcd.com> Reviewed-by: Ganesh Ajjanagadde <gajjanag@mit.edu>
2015-08-19doc/indevs: fix fbdev typosLou Logan
Fixes ticket #4784 as found by rodarmor. Signed-off-by: Lou Logan <lou@lrcd.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2015-04-22dshow: add capture device save and loadMate Sebok
Signed-off-by: Mate Sebok <smfinc.org@gmail.com> Reviewed-by: Roger Pack <rogerdpack2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-24doc: Remove non-existing decklink options.Carl Eugen Hoyos
Reported-by: Bostjan Hamler
2015-03-13doc: Fix alphabetic ordering for decklink input device.Carl Eugen Hoyos
2015-03-08doc: avoid the incorrect phrase 'allow to'Andreas Cadhalpun
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-07Merge commit 'cecf45b2bfbb85e9e59f355428fbd4d8cbc652a8'Michael Niedermayer
* commit 'cecf45b2bfbb85e9e59f355428fbd4d8cbc652a8': doc: Add -list_formats all example for video4linux2 Conflicts: doc/indevs.texi Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-07doc: Add -list_formats all example for video4linux2Jonas Lindgren
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>