aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* doc: Replace some @file tags by more suitable markup.Diego Biurrun2012-05-183-10/+11
|
* build: Add 'check' target to run all compile and test targets.Diego Biurrun2012-05-151-3/+1
|
* Add missing version bumps and APIchanges/Changelog entries.Anton Khirnov2012-05-151-3/+17
|
* avconv: automatically insert asyncts when -async is used.Anton Khirnov2012-05-141-0/+1
| | | | Deprecate -async.
* avconv: add support for audio filters.Anton Khirnov2012-05-141-0/+5
| | | | | The FATE changes are all off-by-one due to different rounding being used (lrintf vs av_rescale_q).
* lavfi: add asyncts filter.Anton Khirnov2012-05-141-0/+19
|
* lavfi: add aformat filterAnton Khirnov2012-05-141-0/+26
| | | | Based on a patch by Mina Nagy Zaki <mnzaki@gmail.com>
* lavfi: add an audio buffer sink.Anton Khirnov2012-05-141-0/+7
|
* lavfi: add an audio buffer source.Anton Khirnov2012-05-141-0/+27
|
* doc: misc improvements for the Windows sectionDiego Biurrun2012-05-141-21/+12
| | | | | | Fix some orthography, wording and grammar issues; update the SDL section with more current instructions; simplify lib.exe example command line; drop outdated comments about libnut.
* doc: fix link to fate.libav.orgDiego Elio Pettenò2012-05-131-2/+3
| | | | | Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* lavfi: add lavr-based audio resampling filter.Anton Khirnov2012-05-121-0/+6
|
* lavc: pad last audio frame with silence when needed.Anton Khirnov2012-05-091-0/+6
|
* lavfi: add video buffer sink, and use it in avtoolsAnton Khirnov2012-05-091-0/+8
| | | | | | Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
* doc: Replace a stray reference to the old '-intra' flag.Alex Converse2012-05-081-1/+1
|
* avprobe: allow showing only one container/stream property.Ronald S. Bultje2012-05-071-0/+5
| | | | | | This is useful for writing unit tests. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavc: add sample rate and channel layout to AVFrame.Anton Khirnov2012-05-071-0/+3
| | | | Rationale is the same as for video width/height etc.
* doc: clarify check for NULL pointer styleLuca Barbato2012-05-061-0/+4
| | | | Our code should be terse and clear.
* vf_split: support user-specifiable number of outputs.Anton Khirnov2012-05-061-0/+13
|
* lavr: use 8.8 instead of 10.6 as the 16-bit fixed-point mixing coeff typeJustin Ruggles2012-05-011-0/+3
|
* APIchanges: fill in some dates and commit hashesJustin Ruggles2012-04-301-9/+9
|
* avutil: add av_parse_cpu_flags() functionMans Rullgard2012-04-251-0/+3
| | | | | | | This moves the cpu flag parsing code from avconv to avutil so it can be accessed elsewhere. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add libavresampleJustin Ruggles2012-04-241-6/+10
| | | | | This is a new library for audio sample format, channel layout, and sample rate conversion.
* Remove libdirac decoder.Diego Biurrun2012-04-232-4/+3
| | | | libschroedinger is the preferred way to decode Dirac video.
* avutil: add audio fifo bufferJustin Ruggles2012-04-201-0/+12
| | | | | The functions operate on the sample level rather than the byte level and work with all audio sample formats.
* doc: Update sample Vim config with suitable (function) indentation settings.Diego Biurrun2012-04-161-0/+2
|
* doc/filters: update documentation.Anton Khirnov2012-04-151-10/+8
|
* avconv: add support for complex filtergraphs.Anton Khirnov2012-04-152-1/+47
|
* doc: Improve suggested Emacs settings for our coding style.Diego Biurrun2012-04-151-4/+10
| | | | | | Switch from changing global values to defining a separate C style and add appropriate settings for indenting assignments that span more than one line.
* avfiltergraph: make the AVFilterInOut alloc/free API publicStefano Sabatini2012-04-141-0/+4
| | | | | | | This is required for letting applications to create and destroy AVFilterInOut structs in a convenient way. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* graphparser: allow specifying sws flags in the graph description.Anton Khirnov2012-04-141-1/+7
|
* git-howto: Explain how to avoid Windows line endings in git checkouts.Diego Biurrun2012-04-121-0/+8
|
* avutil: add av_get_packed_sample_fmt() and av_get_planar_sample_fmt()Justin Ruggles2012-04-081-0/+3
| | | | Based on a patch by Clément Bœsch <ubitux@gmail.com>
* avutil: Add av_get_default_channel_layout()Justin Ruggles2012-04-051-0/+3
| | | | Also, use the new function in the AC-3 encoder.
* build: fix doc generation errors in parallel buildsMans Rullgard2012-03-281-1/+1
| | | | | | | | | | The $(dir) function used to construct OBJDIRS includes a trailing slash in the names returned, which GNU make 3.82 does not match to the slash-less 'doc' in the documentation dependencies, causing parallel build to fail. Adding a slash fixes this and still works with make 3.81. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: Do not explicitly add the doc directory to the OBJDIRS list.Diego Biurrun2012-03-271-1/+0
| | | | | | Now that a documentation generator is built in the doc directory, this is no longer necessary. Fixes the Make warning: Makefile:188: target `doc' given more than once in the same rule.
* APIchanges: mark the place where 0.7 was cut.Anton Khirnov2012-03-261-0/+7
|
* APIchanges: mark the place where 0.8 was cut.Anton Khirnov2012-03-261-0/+8
|
* APIchanges: fill in missing dates and hashes.Anton Khirnov2012-03-261-7/+7
|
* doc: pass -Idoc texi2html and texi2podMans Rullgard2012-03-201-2/+2
| | | | | | This fixes doc generation in build tree separate from source. Signed-off-by: Mans Rullgard <mans@mansr.com>
* doc: texi2pod: add -I flagMans Rullgard2012-03-201-8/+11
| | | | | | | This allows specifying additional directories to search for @include files. Signed-off-by: Mans Rullgard <mans@mansr.com>
* movenc: Add a min_frag_duration optionMartin Storsjö2012-03-201-0/+7
| | | | | | | | The other fragmentation options (frag_duration, frag_size and frag_keyframe) are combined with OR, cutting fragments at the first of the conditions being fulfilled. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtsp: Set the default delay to 0.1 s for the RTSP/SDP/RTP demuxersMartin Storsjö2012-03-201-3/+3
| | | | | | | This enables reordering of UDP packets by default, unless the caller explicitly sets -max_delay 0. Signed-off-by: Martin Storsjö <martin@martin.st>
* Generate manpages for AV{Format,Codec}Context AVOptions.Anton Khirnov2012-03-203-4/+139
|
* doc/avconv: remove entries for AVOptions.Anton Khirnov2012-03-201-174/+14
| | | | Documentation for those will be generated automatically.
* ZeroCodec DecoderDerek Buitenhuis2012-03-191-0/+1
| | | | | | | | An obscure Japanese lossless video codec, originally intended for use with a remote desktop application. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* RealAudio Lossless decoderKostya Shishkov2012-03-191-0/+1
|
* APIchanges: Replace Subversion revision numbers by Git hashes.Diego Biurrun2012-03-181-147/+147
|
* avcodec: add XBM encoderPaul B Mahol2012-03-171-0/+2
| | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* doc/general: update supported devices table.Anton Khirnov2012-03-131-1/+2
| | | | Add libcdio and fbdev, remove v4l1.