summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
...
* | doc/filters: apply misc fixes to drawbox documentationStefano Sabatini2013-02-20
| |
* | lavfi/histogram: overlay display mode for levels histogram modePaul B Mahol2013-02-18
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | eval: print() supportMichael Niedermayer2013-02-17
| | | | | | | | | | | | This allows printing values via av_log from expressions. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/codecs: simple sub_charenc option documentation.Clément Bœsch2013-02-17
| |
* | doc/examples: do not allocate AVFrame directly.Nicolas George2013-02-17
| | | | | | | | | | | | | | The size of the AVFrame structure is not part of the ABI; it can grow with later versions. Therefore, applications are not supposed to allocate AVFrame directly, they are supposed to use avcodec_alloc_frame() instead.
* | lavfi/subtitles: support charenc option.Clément Bœsch2013-02-17
| |
* | lavfi/mp: drop mp=kerndeint filterStefano Sabatini2013-02-17
| | | | | | | | The filter has been natively integrated into libavfilter.
* | lavfi/mp: drop mp=unsharp filterStefano Sabatini2013-02-17
| | | | | | | | | | The native filter is equivalent from the point of view of the features and of performances.
* | lavfi/unsharp: add check on matrix x/y size values oddityStefano Sabatini2013-02-17
| |
* | lavfi: port MP noise filterPaul B Mahol2013-02-16
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi/unsharp: extend range for amount values, to reflect the behavior of ↵Stefano Sabatini2013-02-16
| | | | | | | | | | | | mp=unsharp Also update the documentation accordingly, and suggest a meaningful range.
* | doc/filters: itemize unsharp examplesStefano Sabatini2013-02-16
| | | | | | | | Also drop pointless example.
* | lavfi/unsharp: use named options, and add missing checks on matrix size valuesStefano Sabatini2013-02-16
| | | | | | | | | | In particular, avoid out-of-buffer access and crashes with too big values, and rework documentation accordingly.
* | doc: fix reference to ffmpeg-bitstream-filters.html pageStefano Sabatini2013-02-15
| |
* | lavfi/unsharp: use the same macros used in the original MP filterStefano Sabatini2013-02-15
| | | | | | | | | | | | | | Remove possibly pointless inconsistency with the ported code. Also specify parameter value ranges consistent with those of the ported filter.
* | examples/scaling_video: fix typoStefano Sabatini2013-02-15
| |
* | doc/APIchanges: List merge commit hashes and version numbersMichael Niedermayer2013-02-15
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix a few "its" vs "it's" typo.Clément Bœsch2013-02-14
| |
* | doc/resampler: fix two typo.Clément Bœsch2013-02-14
| |
* | apichanges: fix 2 wrong hashesMichael Niedermayer2013-02-14
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | apichanges: Use , instead of / to seperate multiple hashesMichael Niedermayer2013-02-14
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | apichanges: fix dateMichael Niedermayer2013-02-14
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: remove softskip libmpcodecs wrapperPaul B Mahol2013-02-14
| | | | | | | | | | | | | | It is supposed to be used with mencoder only and does nothing when used with ffmpeg. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi: remove dsize libmpcodecs wrapperPaul B Mahol2013-02-14
| | | | | | | | | | | | | | Filter does nothing, and supposed funcionality is already available with native filter(s). Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/APIchanges: fix odd .01 versionsMichael Niedermayer2013-02-14
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/dev: clarify public symbols prefixes.Clément Bœsch2013-02-13
| |
* | lavf/concatdec: allow probing.Nicolas George2013-02-13
| |
* | lavf/concatdec: add signature directive.Nicolas George2013-02-13
| |
* | lavf/concatdec: add safe option.Nicolas George2013-02-13
| |
* | doc/demuxers: quote command line arguments with @codeDaniel Verkamp2013-02-13
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2013-02-12
|\| | | | | | | | | | | | | | | | | | | | | * qatar/master: lavu: avoid clashing definition of E doc: developer: Add a note about reserved system name space Conflicts: libavutil/internal.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doc: developer: Add a note about reserved system name spaceDiego Biurrun2013-02-11
| |
* | Merge commit '56dea32f09e71460add14a1b6d0fbe6eb16f02a4'Michael Niedermayer2013-02-12
|\| | | | | | | | | | | | | | | | | | | | | * commit '56dea32f09e71460add14a1b6d0fbe6eb16f02a4': doc: developer: Fix wording in "naming conventions" section openbsd: Add minor number to shared library install name Conflicts: doc/developer.texi Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doc: developer: Fix wording in "naming conventions" sectionDiego Biurrun2013-02-11
| |
* | doc/filters: rework idet filter descriptionStefano Sabatini2013-02-11
| |
* | doc/filters: apply minor fixes to il filter docsStefano Sabatini2013-02-11
| |
* | doc/filters: fix position of il filter docsStefano Sabatini2013-02-11
| |
* | lavfi: remove mp=il filterPaul B Mahol2013-02-09
| | | | | | | | | | | | Native il video filter is now available. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi: port MP il filterPaul B Mahol2013-02-09
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavf: add tee pseudo-muxer.Nicolas George2013-02-09
| |
* | lavfi/histogram: make waveform mode more usefulPaul B Mahol2013-02-09
| | | | | | | | | | | | | | Now it displays all color components (not just luma) either in parade or overlay and also works with RGB colorspace. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/filters: end table in histogram docsStefano Sabatini2013-02-09
| |
* | doc/demuxers: add docs for rawvideo demuxerStefano Sabatini2013-02-09
| |
* | doc/demuxers: fix copy&paste error in "@c man end" lineStefano Sabatini2013-02-09
| | | | | | | | Use proper name for ending chapter.
* | doc/demuxers: sort demuxers by nameStefano Sabatini2013-02-09
| |
* | histogram filterPaul B Mahol2013-02-09
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/filters: remove another instance of '×'Stefano Sabatini2013-02-07
| | | | | | | | Fix trac ticket #2247.
* | doc: replace '×' symbol with 'x'Stefano Sabatini2013-02-06
| | | | | | | | | | | | | | | | Non-ascii chars are not correctly rendered in both MAN and HTML output or may even cause compilation failure. Thus avoid to use them until we find a satisfying way to deal with them. Fix trac ticket #2243.
* | doc/filters: apply various rendering changes to the showspectrum docsStefano Sabatini2013-02-05
| | | | | | | | | | | | In particular: always use @table @samp for showing constant tables, add a few empty lines for improving readability, and specify default value when missing.
* | doc/filters: fix @item syntax in showspectrum docsStefano Sabatini2013-02-05
| | | | | | | | | | In particular, fix warnings: ** Unknown command with braces `@item' (in doc/filters.texi l. 60XX)