summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* lavfi: add pp filter.Clément Bœsch2012-12-23
| | | | | | | | | | | Ported from MPlayer. Original author is A'rpi, with various contributions from Michael Niedermayer. The original documentation was mostly written by Diego Biurrun. See the MPlayer history for full credits. The filter is under GPL like the original filter, even if it differs quite a lot. There is not much point in making it LGPL since pp is under GPL.
* doc/ffmpeg-resampler: mention that the options also work with the aresample ↵Michael Niedermayer2012-12-23
| | | | | | filter Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* docs: point to aresample from asyncts docsMichael Niedermayer2012-12-22
| | | | | | "Fixes" Ticket2036 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/filters: reword introduction sentence of aformat.Clément Bœsch2012-12-22
|
* doc/filters: simplify escaping in aformat.Clément Bœsch2012-12-22
| | | | | Escaping the '=' is not necessary, and quoting the arguments allow to remove the comma escaping as well.
* doc/filters: add overlay daisy-chaining exampleStefano Sabatini2012-12-22
|
* doc/filters: rework and itemize examples for the overlay filterStefano Sabatini2012-12-22
|
* lavfi/overlay: make use of av_opt_set_from_string()Stefano Sabatini2012-12-22
| | | | Simplify.
* doc/filters: rename reference to movie filter from "src_movie" to "movie"Stefano Sabatini2012-12-22
| | | | Should be less confusing.
* doc/default.css: use ffmpeg.org website CSSStefano Sabatini2012-12-22
| | | | | | | The attribute container of the top-level div is changed from "class" to "id" to match the website CSS. Improve consistency between website docs and local documentation style.
* doc: move HTML CSS to a dedicated file default.cssStefano Sabatini2012-12-22
|
* Merge commit '511cf612ac979f536fd65e14603a87ca5ad435f3'Michael Niedermayer2012-12-21
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '511cf612ac979f536fd65e14603a87ca5ad435f3': miscellaneous typo fixes Conflicts: libavcodec/4xm.c libavcodec/lagarith.c libavcodec/parser.c libavcodec/ratecontrol.c libavcodec/shorten.c libavcodec/vda_h264.c libavformat/dvenc.c libavformat/wtv.c tools/patcheck Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * miscellaneous typo fixesDiego Biurrun2012-12-21
| |
* | doc: remove inclusion of libav* documentation in toolsStefano Sabatini2012-12-20
| | | | | | | | | | | | | | | | | | This shrinks the tool manuals to a manageable size. Relevant manuals are referenced in the "See Also" chapter. Overall documentation inclusion should still be possible through the use of a conditional variable set during configuration time, if someone feels the need for a huge-wall-of-text-fashioned manual.
* | doc/ffmpeg-formats: include metadata chapterStefano Sabatini2012-12-20
| | | | | | | | The metadata muxer/demuxer belongs to the formats documentation.
* | lavfi: add an accessor for ref->audio->channels.Nicolas George2012-12-20
| |
* | doc/general: sort subtitles formats.Clément Bœsch2012-12-20
| |
* | doc/faq: move filter links to the ffmpeg-filters.html page.Clément Bœsch2012-12-20
| |
* | doc/faq: improve concatenation entry.Clément Bœsch2012-12-20
| |
* | doc: remove mention of fifo filter in the introduction.Clément Bœsch2012-12-19
| | | | | | | | It's confusing and not necessary, especially in the introduction.
* | doc: extend "See Also" chapters in library manualsStefano Sabatini2012-12-19
| | | | | | | | In particular, make "See Also" chapter rendered in HTML output.
* | doc: extend "See Also" chapters in component manualsStefano Sabatini2012-12-19
| | | | | | | | In particular, make "See Also" chapter rendered in HTML output.
* | doc: extend "See Also" chapter rendering for ff* toolsStefano Sabatini2012-12-19
| | | | | | | | | | | | Add more references, and generate alternative variants for HTML and POD output. In particular, this allows to render a "See Also" chapter in the HTML output.
* | doc: rework synopsis section for ff* toolsStefano Sabatini2012-12-19
| | | | | | | | | | Fix syntax, remove pointless introductory sentence, improve overall consistency.
* | doc: use a common authors.texi file blurbStefano Sabatini2012-12-19
| | | | | | | | Factorize.
* | doc/texi2pod: rework man inclusion logicStefano Sabatini2012-12-19
| | | | | | | | | | | | | | | | | | | | | | Ignore @c man begin ... @c man end comments, rely on @chapter for marking the beginning of the various manual top level sections. This allows us to write markup which is not dependent on the specific texi2pod.pl implementation. This change causes a few rendering issues, which will be fixed in further patches.
* | doc/filters: reformat and rework gradfun.Clément Bœsch2012-12-19
| | | | | | | | Note that examples are changed.
* | lavfi/gradfun: support named options.Clément Bœsch2012-12-19
| | | | | | | | This breaks usage for out-of-range values.
* | lavfi/gradfun: reduce up limit for threshold.Clément Bœsch2012-12-19
| | | | | | | | | | | | | | | | | | | | This will prevent an overflow in the SSSE3 and MMX filter_line code: delta is expressed as an u16 being shifted by 2 to the left. If it overflows, having a strength not above 64 will make sure that m is set to 0 (making the m*m*delta >> 14 expression void). A value above 64 should not make any sense unless gradfun is used as a blur filter.
* | avfilter: add apad filterMichael Niedermayer2012-12-18
| | | | | | | | | | | | | | | | This filter pads an audio stream with silence It can together with -shortest be used to extend audio streams to the same length as video. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix "bistream" typo and add a check in tools/patcheck.Clément Bœsch2012-12-18
| |
* | doc/ffmpeg-bitstream-filters: fix typo in titleStefano Sabatini2012-12-18
| |
* | doc/indevs: update syntax for the color filter in the lavfi device examplesStefano Sabatini2012-12-18
| |
* | doc/texi2pod: correctly handle @url commands in the form @url{URL,...}Stefano Sabatini2012-12-18
| | | | | | | | | | Ignore the other arguments, which have not to be processed by the POD renderer.
* | doc/Makefile: add docclean ruleStefano Sabatini2012-12-18
| | | | | | | | | | | | | | | | | | | | | | This allows to clean the doc directory from the parent project dir. The command: make -C doc clean does not work as long as the paths specified in doc/Makefile are relative to the parent dir. Also it is consitent with "testclean" and "distclean" targets.
* | doc/texi2pod: add support to @ifhtml and @ifnothtml directivesStefano Sabatini2012-12-17
| | | | | | | | | | With these commands it is possible to add HTML and non-HTML snippets, which will be useful for the "See Also" manual chapters.
* | doc: remove references to external documentsStefano Sabatini2012-12-17
| | | | | | | | | | | | | | Fix a few warnings generated when creating the manuals. Our current doc generation toolchain does not allow to reference external documents.
* | Silicon Graphics Movie (.mv) demuxerPeter Ross2012-12-17
| | | | | | | | Signed-off-by: Peter Ross <pross@xvid.org>
* | Silicon Graphics Motion Video Compressor 1 & 2 decoderPeter Ross2012-12-17
| | | | | | | | Signed-off-by: Peter Ross <pross@xvid.org>
* | SGI RLE 8-bit decoderPeter Ross2012-12-17
| | | | | | | | Signed-off-by: Peter Ross <pross@xvid.org>
* | doc/examples/resampling_audio.c: fix pathMichael Niedermayer2012-12-16
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/filters: fix "Dolby Pro Logic II" option nameMichael Niedermayer2012-12-16
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffplay: improve robustness of opt_codec(), and add options acodec,vcodec,scodecStefano Sabatini2012-12-16
| | | | | | | | | | | | | | Fail with a meaningfull error message in case of bogus input. Also the new options are more consistent with the rest of the tool options, since it does not support generic stream specifiers.
* | doc/filters: remove @example use for showing syntaxStefano Sabatini2012-12-15
| | | | | | | | I forgot to merge with the previous commit.
* | doc/filters: extend syntax description for transpose, and add examplesStefano Sabatini2012-12-15
| |
* | doc/filters: add basic crop examplesStefano Sabatini2012-12-15
| | | | | | | | Use it to show difference between shorthand and named parameters.
* | doc/filters: itemize crop examplesStefano Sabatini2012-12-15
| |
* | lavfi/crop: add support to option parsingStefano Sabatini2012-12-15
| | | | | | | | Also fix documentation accordingly.
* | doc/APIchanges: fill empty git commit hashes and datesStefano Sabatini2012-12-15
| |
* | ffprobe: show pkt_size in frameStefano Sabatini2012-12-15
| | | | | | | | Fix trac ticket #2027.