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
2015-03-06fix spelling errorsAndreas Cadhalpun
opttimizations -> optimizations grabing -> grabbing many resource -> many resources isnt -> isn't silcense -> silence Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-25Merge commit 'b31328d008985f87f0a7c83c700847cef1a4f08c'Michael Niedermayer
* commit 'b31328d008985f87f0a7c83c700847cef1a4f08c': xcbgrab: Provide better names for the y and x option Conflicts: doc/indevs.texi libavdevice/x11grab.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-25xcbgrab: Provide better names for the y and x optionLuca Barbato
Incidentally `-y` also collides with avconv global options. Update x11grab to match and document the option. CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2015-02-09doc/indevs: Docs for Blackmagic high bit depth video/audioGeorg Lippitsch
Reviewed-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-31doc/indevs/libcdio: apply minor spell fixes, extend documentationStefano Sabatini
2015-01-30doc/indevs: add some XCB info to x11grabLou Logan
Signed-off-by: Lou Logan <lou@lrcd.com>
2015-01-26dshow: crossbar dialog was frequently being displayed twice, split up option ↵rogerdpack
so it can be just once Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
2015-01-26dshow: alert as to ramifications of switching crossbar routingrogerdpack
Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
2015-01-26dshow: add properties dialog for tv tunersrogerdpack
Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
2015-01-24Merge remote-tracking branch 'rdp/dshow_crossbar'Michael Niedermayer
* rdp/dshow_crossbar: dshow: fix docu escapes dshow: some devices only list themselves under "Video sources" but actually have both video and audio output pins, so make the audio pins accessible by video source name. dshow: add options for allowing filter popup configuration dialogs to be presented to the user dshow: introduce support for crossbar [multiple input selectable] devices dshow: drop initial audio packets with weird timestamps dshow: use non deprecated api dshow: miscellaneous tweaks dshow: allow selecting devices by an alternative name (workaround for devices with symbols in them), allow specifying capture pins by name and alternative (unique) name Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-23dshow: fix docu escapesrogerdpack
Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
2015-01-23dshow: add options for allowing filter popup configuration dialogs to be ↵rogerdpack
presented to the user Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
2015-01-23dshow: introduce support for crossbar [multiple input selectable] devicesrogerdpack
Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
2015-01-23dshow: allow selecting devices by an alternative name (workaround for ↵rogerdpack
devices with symbols in them), allow specifying capture pins by name and alternative (unique) name Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
2015-01-08doc: fix typosLou Logan
Signed-off-by: Lou Logan <lou@lrcd.com>
2015-01-02lavd/lavfi: allow to extract subcc.Nicolas George
Signed-off-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-12-01doc: fix spelling errorsAndreas Cadhalpun
succesfully => successfully, reproducable => reproducible, specifiying => specifying, isnt => isn't, seperated => separated Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-14doc/indevs: Rework and update documentation of AVFoundation device.Thilo Borgmann
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-07lavd/avfoundation: Update documentation to mention audio capabilities.Thilo Borgmann
Reviewed-by: Lou Logan <lou@lrcd.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-22avdevice: add decklink input supportDeti Fliegl
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-01doc/indevs: mention required configure optionsLou Logan
For x11grab, libcdio, and libdc1394 input devices. Signed-off-by: Lou Logan <lou@lrcd.com>
2014-07-31doc: add very basic libcdio documentationGerion Entrup
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-07-17lavd/x11grab: add an option to disable MIT-SHM.Nicolas George
With remote displays supporting the MIT-SHM extension, the extension is detected and used, but attaching fails asynchronously.
2014-06-12lavd/avfoundation: Support user selected pixel formats and pixel format ↵sfan5
autoselection. Signed-off-by: Thilo Borgmann <thilo.borgmann@mail.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-28ffmpeg: add -devices paramLukasz Marek
FFmpeg mix devices and file formats when -formats option is used. This commit adds a -devices param to list devices only. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-04-11Add AVFoundation input device.Thilo Borgmann
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-04-03Add Win32 GDI-based screen grabbingCalvin Walton
Based on original code by Christophe Gisquet in 2010, updated to work with current ffmpeg APIs. Supports grabbing a single window or an area of the screen, including support for multiple monitors (Windows does funky stuff with negative coordinates here). I've moved most of the configuration to AVOptions; the input file name is now only the string "desktop", or "title=<windowname>" to select a single window. The AVOptions are the same as x11grab where possible. Code has been added to support a "show_region" mode, like x11grab, which will draw a rectangle on the screen around the area being captured. Instead of duplicating code for paletted image handling, I make use of the GDI API's ability to output DIB (BMP) images, which can be run through ffmpeg's existing BMP decoder. Signed-off-by: Calvin Walton <calvin.walton@kepstin.ca> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-04-03lavd/qtkit: Support choosing the input device by index or by name.Thilo Borgmann
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-03-30doc/indevs: Fix example for QTKit usage.Thilo Borgmann
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-03-30lavd: Add QTKit input device.Vadim Kalinsky
Signed-off-by: Thilo Borgmann <thilo.borgmann@mail.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-03-07Fix spelling errors in texi files: accomodate -> accommodate allows to -> ↵Andreas Cadhalpun
allows one to choosen -> chosen compability -> compatibility explictly -> explicitly overriden -> overridden specifed -> specified Trasmission -> Transmission Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-19lavd/pulse_audio_dec: apply cosmetic changesLukasz Marek
In particular, fix punctuation in docs and make option help messages grammatically consistent. Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-10-15doc: make x11grab examples consistent with option namesLou Logan
Change -r to -framerate, but either will work. Change -s to -video_size, but either will work. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-10-07doc/indevs: make pulse dev formatting consistent with other devicesLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-05-22v4l2: make possible to disable libv4l2 at runtime.Clément Bœsch
Also disable it by default since it looks currently buggy. The usefulness of such library is mostly limited to backward compatibility with very old devices.
2013-04-01doc: Consistently use 'frame rate' everywhereDerek Buitenhuis
We used to use 'framerate' or 'frame rate' randomly. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2013-03-23lavd/v4l2: honor previously selected input channelGiorgio Vazzana
An input channel could have been previously set with another application, like v4l2-ctl, so if no input channel is specified use the previosly selected one. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-18doc: Fix some obsolete references to av* tools as ff* toolsVicente Jimenez Aguilar
Signed-off-by: Diego Biurrun <diego@biurrun.de> CC: libav-stable@libav.org
2013-02-02doc/indevs: add missing final dot in v4l2 option value descriptionStefano Sabatini
Fix inconsistency.
2013-02-01doc/indevs: document v4l2 optionsStefano Sabatini
Reviewed-By: Giorgio Vazzana <mywing81@gmail.com>
2013-02-01doc/indevs: itemize examples for the v4l2 deviceStefano Sabatini
2013-01-31doc/indevs: apply misc fixes to the v4l2 documentationStefano Sabatini
Reviewed-by: Giorgio Vazzana <mywing81@gmail.com>
2013-01-31lavd/v4l2: add list_standards optionGiorgio Vazzana
Since the user is expected to choose the standard by name (with -standard option), add the possibility to list all the supported standards. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2012-12-21miscellaneous typo fixesDiego Biurrun
2012-12-18doc/indevs: update syntax for the color filter in the lavfi device examplesStefano Sabatini
2012-11-13Update iec61883 to handle multiple devices, and allowGeorg Lippitsch
selection of DV device by its GUID
2012-10-24lavd/lavfi: add graph_file optionStefano Sabatini
Allow to specify a filename where to put the filtergraph description. This is useful to override limitations or glitches of particular shell environments, and allows a level of indirection for specifying filtergraphs.
2012-09-07lavd/dshow: support video codec and pixel format selectionRamiro Polla
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2012-08-29dshow: allow user to specify audio buffer sizeRamiro Polla
Based on patch by rogerdpack <rogerpack2005@gmail.com> Tested-by: Roger Pack <rogerdpack2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-09doc/indevs: document missing options in x11grab sectionStefano Sabatini
Add documentation for options draw_mouse, framerate, and video_size. In particular, fix trac ticket #1314.