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
path: root/doc
AgeCommit message (Collapse)Author
2013-09-27avfilter/vidstabtransform: update optzoom range values for recent vid.stab ↵Georg Martius
update. Signed-off-by: Georg Martius <martius@mis.mpg.de>
2013-09-27avfilter/af_ladspa: allow changing controls dynamicallyPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-27Merge commit '705b748e8d8612385c96428ae36ed0d42a170d93'Michael Niedermayer
* commit '705b748e8d8612385c96428ae36ed0d42a170d93': tls: Add support for listen mode Conflicts: doc/protocols.texi libavformat/tls.c libavformat/version.h See: 4f4eb380f0f96dbb7cdd2b812fa92b8b47a0f27c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-27Merge commit '8b09d917e7dc7d7f2ace31419f802d4ff518236c'Michael Niedermayer
* commit '8b09d917e7dc7d7f2ace31419f802d4ff518236c': tls: Add options for verifying the peer certificate Conflicts: doc/protocols.texi libavformat/tls.c libavformat/version.h See: b2460858f64b2070d84dd861d4bbd16acfb9b0e9 See: 973a758f52a4e5fe63bd88806a4b2db034a032de Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-27tls: Add support for listen modeMartin Storsjö
Also add options for specifying a certificate and key, which can be used both when operating as client and as server. Partially based on a patch by Peter Ross. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-09-27tls: Add options for verifying the peer certificateMartin Storsjö
A file containing the trusted CA certificates needs to be supplied via the ca_file AVOption, unless the TLS library has got a system default file/database set up. This doesn't check the hostname of the peer certificate with openssl, which requires a non-trivial piece of code for manually matching the desired hostname to the string provided by the certificate, not provided as a library function. That is, with openssl, this only validates that the received certificate is signed with the right CA, but not that it is the actual server we think we're talking to. Verification is still disabled by default since we can't count on a proper CA database existing at all times. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-09-24doc/filters: fix an option name in the unsharp docsAnton Khirnov
2013-09-24doc/outdevs: add sdl window_fullscreen optionLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-23doc/filters: add [] labels for the graph of the opening paragraph exampleTimothy Gu
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-09-23doc/filters: use between() function in select examplesStefano Sabatini
Simplify.
2013-09-23doc/fftools: rework some paragraph in the AVOptions chapterStefano Sabatini
Fix typos, and clarify note about codec AVOptions.
2013-09-23doc/filters: put ladspa configure option into @code{}Paul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-22doc/filters: mention configure option for ladspaPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-22avfilter: add ladspa wrapper filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-22Merge commit 'e208e6d209728d332343aa5390ae377ac0a6305c'Michael Niedermayer
* commit 'e208e6d209728d332343aa5390ae377ac0a6305c': lavu: Add interleaved 4:2:2 8/10-bit formats Conflicts: doc/APIchanges libavutil/pixdesc.c libavutil/pixfmt.h libavutil/version.h See: 90ca5a9b5fc3f1484c389a44f40ee1af4b8f435e Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-21lavu: Add interleaved 4:2:2 8/10-bit formatsKieran Kunhya
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-09-21Remove '-vf' from pullup documentation example.Carl Eugen Hoyos
2013-09-21lavf: add SFTP protocol via libsshLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-21Improve pullup documentation.Carl Eugen Hoyos
Mention that the fps filter should be used after pullup.
2013-09-19doc: Add missing hashes and dates to APIChangesPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-19lavfi/mp: remove mp=qpPaul B Mahol
The filter does nothing. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-19Merge commit 'c4bfa098072ba338d83555d6e2199f7e1e64ffff'Michael Niedermayer
* commit 'c4bfa098072ba338d83555d6e2199f7e1e64ffff': Add a WebP decoder Conflicts: Changelog doc/general.texi libavcodec/Makefile libavcodec/avcodec.h libavcodec/version.h libavformat/img2.c The previously existing webp decoder is disabled as the new one supports lossless mode and alpha while the previous does not. Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-19ffprobe: add -read_intervals optionStefano Sabatini
This is also useful to test seeking on an input file. This also addresses trac ticket #1437.
2013-09-19doc/muxers: itemize tee examplesStefano Sabatini
Improve rendering.
2013-09-19doc/APIchanges: Fix two hashesJames Almer
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-18Add a WebP decoderJustin Ruggles
Container and lossy decoding by Aneesh Dogra <aneesh@sugarlabs.org> Lossless decoding by Justin Ruggles <justin.ruggles@gmail.com>
2013-09-18lavfi/mp: remove mp=pullupPaul B Mahol
The filter was ported to a native libavfilter filter. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-18doc/APIchanges: List merge commit hashes and version numbersMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-17lavf/options_table: improve option help textMichael Niedermayer
Contains text suggested by carl Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-17avfilter: port pullup filter from libmpcodecsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-17Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: doc: Add missing hashes and dates to APIChanges Conflicts: doc/APIchanges Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-17doc: Add missing hashes and dates to APIChangesLuca Barbato
Also fix the typo in the last entry version.
2013-09-17doc/fftools-common-opts: document -help long and full outputStefano Sabatini
2013-09-17Merge commit '3feb3d6ce4be0a09a9f8f13d613bed25b523b6e7'Michael Niedermayer
* commit '3feb3d6ce4be0a09a9f8f13d613bed25b523b6e7': mem: Introduce av_reallocp Conflicts: doc/APIchanges libavutil/mem.c libavutil/mem.h libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-16mem: Introduce av_reallocpLuca Barbato
2013-09-16doc/formats: Add documentation for 3 parameters that have been missingTimothy Gu
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-16avfilter: add adelay filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-15doc/encoders: improve libvo-aacenc docTimothy Gu
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-09-15doc/encoders: add doc for AAC encoderTimothy Gu
Thanks-to: Kostya Shishkov <kostya.shishkov@gmail.com> Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-09-11Merge commit 'ec17d1aa8b833d49d8fc479e44e9e22858aa486c'Michael Niedermayer
* commit 'ec17d1aa8b833d49d8fc479e44e9e22858aa486c': doc: Drop VDPAU from list of supported codecs Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-10doc: Rename avtools-common-opts to fftools-common optsTimothy Gu
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-10doc: Drop VDPAU from list of supported codecsDiego Biurrun
2013-09-08doc: add *install-doc that covers all documentationJames Almer
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-07doc: rename *install-doc to *install-htmlJames Almer
Signed-off-by: James Almer <jamrial@gmail.com> Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-07doc: fix install-doc dependenciesJames Almer
Put it inside its own ifdef conditional. Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-06lavfi: Weston 3 Field Deinterlacing FilterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-06lavfi/mp: remove mp=filPaul B Mahol
The filter does not work correctly most of time. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-06lavfi/mp: remove mp=dintPaul B Mahol
There are better and actually maintained filters that have similar functionality. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-09-05doc/APIchanges: update hashes and dates after last two commits.Clément Bœsch
Sorry, I'm too lazy to fix the rest.
2013-09-05avcodec: make avcodec_close() more tolerant.Clément Bœsch
See previous commit.