summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* doc/platform: Comply With All Capitalized Words ConventionStefano Sabatini2012-11-01
|
* doc/filters: add "Notes on filtergraph escaping" sectionStefano Sabatini2012-11-01
| | | | | Should help to clarify escaping issues in the filtergraph syntax. In particular, should address trac ticket #1813.
* Fix typo in platform documentation.Carl Eugen Hoyos2012-11-01
|
* lavfi: remove hqdn3d libmpcodecs wrapper.Clément Bœsch2012-10-31
| | | | | | The native filter was ported from the MPlayer project when the mp wrapper didn't even exist, and when mp=hqdn3d was added, it was already obsolete.
* lavfi/mp: drop the mp=rectangle filterStefano Sabatini2012-10-31
| | | | | All the rectangle features have been ported to the native drawbox filter, which has an equivalent syntax.
* lavfi/drawbox: add "width" and "height" aliases for "w" and "h" optionsStefano Sabatini2012-10-31
|
* lavfi/drawbox: add thickness optionStefano Sabatini2012-10-31
|
* Merge commit '652f5185945c8405fc57aed353286858df8d066f'Michael Niedermayer2012-10-31
|\ | | | | | | | | | | | | | | | | | | * commit '652f5185945c8405fc57aed353286858df8d066f': x86: mmx2 ---> mmxext in comments and messages Conflicts: libswscale/x86/swscale_template.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: mmx2 ---> mmxext in comments and messagesDiego Biurrun2012-10-31
| |
* | lavfi/drawbox: implement color=invert modeStefano Sabatini2012-10-31
| | | | | | | | Based on a libmpcodecs/vf_rectangle.c feature.
* | lavfi/mp: drop wrapped field filterStefano Sabatini2012-10-31
| | | | | | | | The filter has been ported to a native libavfilter filter.
* | lavfi: add field filterStefano Sabatini2012-10-31
| | | | | | | | | | | | The filter is a port of libmpcodecs/vf_field.c, since there is no common code I relicensed it as LGPL, while keeping the original author copyright.
* | doc/filters: fix typo in drawbox sectionStefano Sabatini2012-10-30
| |
* | doc/filters: itemize examples for drawbox, add an example, fix grammarStefano Sabatini2012-10-30
| |
* | lavfi/drawbox: extend syntax, accept named optionsStefano Sabatini2012-10-30
| |
* | lavfi: remove yuvcsp and yvu9 libmpcodecs wrappersPaul B Mahol2012-10-30
| | | | | | | | | | | | Same functionality is provided by libswscale. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | lavfi: remove palette libmpcodecs wrapperPaul B Mahol2012-10-30
| | | | | | | | | | | | The filter is useless, swscale should be used instead. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | Merge commit '14f031d7ecfabba0ef02776d4516aa3dcb7c40d8'Michael Niedermayer2012-10-30
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '14f031d7ecfabba0ef02776d4516aa3dcb7c40d8': dv: use AVStream.index instead of abusing AVStream.id lavfi: add ashowinfo filter avcodec: Add a RFC 3389 comfort noise codec lpc: Add a function for calculating reflection coefficients from samples lpc: Add a function for calculating reflection coefficients from autocorrelation coefficients lavr: document upper bound on number of output samples. lavr: add general API usage doxy indeo3: remove duplicate capabilities line. fate: ac3: Add dependencies Conflicts: Changelog doc/filters.texi libavcodec/Makefile libavcodec/allcodecs.c libavcodec/avcodec.h libavcodec/codec_desc.c libavcodec/version.h libavfilter/Makefile libavfilter/af_ashowinfo.c libavfilter/allfilters.c libavfilter/version.h libavutil/avutil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavfi: add ashowinfo filterAnton Khirnov2012-10-29
| | | | | | | | | | | | It can be useful for debugging. Based on a patch by Stefano Sabatini <stefano.sabatini-lala@poste.it>
* | Merge commit '381dc1a5ec0925b281c573457c413ae643567086'Michael Niedermayer2012-10-30
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '381dc1a5ec0925b281c573457c413ae643567086': fate: ac3: Place E-AC-3 tests and AC-3 tests in different groups fate: Add shorthands for acodec PCM and ADPCM tests avconv: Drop unused function argument from do_video_stats() cmdutils: Conditionally compile libswscale-related bits aacenc: Drop some unused function arguments rtsp: Avoid a cast when calling strtol nut: support textual data nutenc: verbosely report unsupported negative pts Conflicts: cmdutils.c ffmpeg.c libavformat/nut.c libavformat/nutenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * nut: support textual dataLuca Barbato2012-10-29
| | | | | | | | Plain text (utf8 encoded) data can be muxed and demuxed in nut.
* | lavfi/frei0r: allow for Windows style pathsrogerdpack2012-10-29
| | | | | | | | | | | | | | Update path handling against the latest Frei0r specification changes. Signed-off-by: rogerdpack <rogerpack2005@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | lavfi/scale: implement clever/insane parsing heuristic, and add a size optionStefano Sabatini2012-10-29
| | | | | | | | | | | | | | | | | | | | If the first argument can be read as a video size, set that output size in the scale. This allows to specify in a filtergraph scale=qcif or scale=320x240. This is not completely safe, for example in case of a typo in the video size string the first argument will be read as the input width expression, giving rise to a confusing comment.
* | doc/filters: itemize scale examples, and create a dedicated subsection for themStefano Sabatini2012-10-29
| |
* | lavfi/scale: accept named options, make parsing more robustStefano Sabatini2012-10-29
| | | | | | | | Also update documentation accordingly.
* | doc/syntax: add a "Quoting and escaping" sectionStefano Sabatini2012-10-29
| |
* | lavu: keep context size variablesMichael Niedermayer2012-10-28
| | | | | | | | | | | | | | | | They are essential to be able to use the utils without av_malloc() That is for example use with malloc(), memalign(), some other private allocation function, on the stack or others. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/concat: implement unsafe mode.Nicolas George2012-10-28
| |
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-10-27
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: configure: fix tests for 2-arg math functions doc: git-howto: Clarify comment about pushing series of commits ivi_common: Drop unused function parameter from decode_band() cook: Remove some silly Doxygen comments cook: Remove senseless maybe_reformat_buffer32() function cook: cosmetics: Better names for joint_decode() function parameters cook: cosmetics: Better name for ccpl COOKSubpacket member doxygen: Add av_alloc_size to list of predefined macros doxygen: Drop some pointless entries from PREDEFINED macros list h263: avoid memcpys over array bound in motion vector caching for obmc Conflicts: configure doc/git-howto.texi libavcodec/cook.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doc: git-howto: Clarify comment about pushing series of commitsDiego Biurrun2012-10-26
| |
| * doxygen: Add av_alloc_size to list of predefined macrosDiego Biurrun2012-10-26
| | | | | | | | This avoids Doxygen believing the attribute is the function name.
| * doxygen: Drop some pointless entries from PREDEFINED macros listDiego Biurrun2012-10-26
| |
* | examples: fix doxy so they appear on the example pageMichael Niedermayer2012-10-26
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/showspectrum: add sliding mode.Clément Bœsch2012-10-25
| |
* | lavfi/vf_fps: allow to set the rounding method.Nicolas George2012-10-25
| | | | | | | | | | By default, fps selects frames near PTS 0, 0.5, 1.5, 2.5, etc. With round=down, it selects the frames near PTS 0, 1, 2, 3, etc.
* | Doxyfile: update examples path and patternsStefano Sabatini2012-10-24
| |
* | doc/texi2pod.pl: drop unnecessary rule, which was converting "\," to ","Stefano Sabatini2012-10-24
| | | | | | | | | | | | | | I cannot find a reason for such a rule, which was resulting in badly escaped filtergraph snippets. Fix trac ticket #1610.
* | doc/filters: escape special Texinfo character @ in overlay exampleStefano Sabatini2012-10-24
| |
* | doc/filters: remove unnecessary and inconsistent double ',' escapingStefano Sabatini2012-10-24
| |
* | doxygen: disable header/footer/stylesheetMichael Niedermayer2012-10-24
| | | | | | | | | | | | | | | | They dont work at all and trash the output totally also they are unmaintained -> that is if you want to maintain them contact us ! Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'c68317ebbe4915035df0b08c23eea7a0b80ab881'Michael Niedermayer2012-10-24
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'c68317ebbe4915035df0b08c23eea7a0b80ab881': lavc: fix documentation for AVCodecContext.delay atrac3: return an error if extradata_size is not a specific known size lavc: use the correct API version guard macro for avcodec_encode_audio() Move Doxyfile into the doc/ subdirectory doxygen: Build Doxygen documentation in the doc/ subdirectory dfa: use av_memcpy_backptr() where previously impossible av_memcpy_backptr: Drop no longer necessary malloc padding Conflicts: .gitignore libavcodec/avcodec.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Move Doxyfile into the doc/ subdirectoryDiego Biurrun2012-10-23
| |
* | Merge commit '0c03cc68386443f1e96ab6fb358220faf67cd5ff'Michael Niedermayer2012-10-24
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '0c03cc68386443f1e96ab6fb358220faf67cd5ff': mp3: exit on parsing error in mp_decode_frame rtmppkt: Avoid unescaped backslash in Doxygen comment fate-lavfi: replace sed/grep/cut combos with awk build: Plan 9 support Conflicts: configure tests/lavfi-regression.sh Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * build: Plan 9 supportMans Rullgard2012-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | | This adds support for building on Plan 9 x86-32. The compat/plan9 directory contains these items: - replacements for the 'head' and 'printf' shell commands - wrapper for main() to disable FPU exceptions Larger required changes to the system are described in the documentation. Signed-off-by: Mans Rullgard <mans@mansr.com>
* | examples/decoding_encoding: add and use the decode_write_frame functionStefano Sabatini2012-10-24
| | | | | | | | Allow to factorize code in video_decode_example(), simplify.
* | lavd/lavfi: add graph_file optionStefano Sabatini2012-10-23
| | | | | | | | | | | | | | | | 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.
* | Merge commit 'add3a6902ea4d459f36655656a1f8daa409118a7'Michael Niedermayer2012-10-23
|\| | | | | | | | | | | | | | | | | | | * commit 'add3a6902ea4d459f36655656a1f8daa409118a7': lavu: bump major to 52 Conflicts: libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavu: bump major to 52Anton Khirnov2012-10-23
| | | | | | | | | | | | In addition to the recent tables mess, the AVOption defaults behavior changed, so an old lavc used with a new lavu will get completely messed up defaults.
* | Merge commit '2b8dd371e4d276ca0d342e82b8b4cc281be0630a'Michael Niedermayer2012-10-23
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '2b8dd371e4d276ca0d342e82b8b4cc281be0630a': lavu: postpone recent deprecations until the next major bump APIchanges: update lavr bump date avconv: only apply presets when we have an encoder. atrac3: replace a calculation with FFALIGN() atrac3: remove unused ATRAC3Context field, sample_rate atrac3: use sizeof(variable) instead of sizeof(type) atrac3: simplify MDCT window calculation Conflicts: doc/APIchanges Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * APIchanges: update lavr bump dateAnton Khirnov2012-10-23
| |