summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* Remove all SPARC architecture optimizationsDiego Biurrun2014-03-13
| | | | | SPARC is no longer being used in any multimedia-related fields and the VIS optimizations only represent a maintenance burden.
* avconv: Match stream idLuca Barbato2014-03-13
| | | | Quite useful to select by pid in MPEG-TS.
* doc: Point to the correct, actually maintained gas-preprocessor repoMartin Storsjö2014-03-12
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* http: Allow setting a Content-Type for POST requestsClément Bœsch2014-03-11
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Improve options descriptionsAlessandro Ghedini2014-03-11
| | | | | | Add documentation where missing. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Add support for selecting a request rangeAnssi Hannula2014-03-11
| | | | | | Comment from Reimar Döffinger included as pro memoria. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Support setting custom User-AgentClément Bœsch2014-03-11
| | | | | | | Contextually make the default User-Agent use the common "Name/Version" pattern. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Export Content-Type informationMichael Niedermayer2014-03-11
| | | | | | Bug-Id: https://bugs.debian.org/740421 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* http: Add support reading ICY metadataLuca Barbato2014-03-11
| | | | | | | | | Export the metadata as a icy_metadata_packet avoption. Based on the work of wm4 and Alessandro Ghedini. Bug-Id: https://bugs.debian.org/739936 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* doc: Add section about AviSynth supportStephen Hutchinson2014-03-11
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavfi: add shuffleplanes filterAnton Khirnov2014-03-05
|
* lavfi: add compand audio filterAndrew Kelley2014-02-26
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* libavfilter: example audio filtering programAnton Khirnov2014-02-25
| | | | | | Based on a patch by Andrew Kelley <superjoe30@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
* texi2pod: always declare the pod file as UTF-8 encodedJanne Grunau2014-02-24
|
* doc: fix one accented wordVittorio Giovara2014-02-24
|
* doc: name correct headerVittorio Giovara2014-02-24
|
* frame: add a convenience function for copying AVFrame dataAnton Khirnov2014-02-24
|
* avconv: support forcing codec tags for input streamsAnton Khirnov2014-02-24
|
* lavr: add a function for checking whether AVAudioResampleContext is openAnton Khirnov2014-02-22
|
* AVOptions: add flags for read/read-only optionsAnton Khirnov2014-02-19
|
* AVOptions: deprecate unused AV_OPT_FLAG_METADATAAnton Khirnov2014-02-19
| | | | | It was never used since it was added and the things it was intended for are now exported differently.
* doc: Name the MOV muxer as it should be calledLuca Barbato2014-02-19
| | | | The section name is the muxer, not the format.
* doc: Sort the muxer documentationLuca Barbato2014-02-19
| | | | Keep the sections alphabetically sorted.
* vf_interlace: deprecate lowpass optionVittorio Giovara2014-02-19
|
* doc: Fix project name typoDiego Biurrun2014-02-16
|
* Move all example programs to doc/examplesDiego Biurrun2014-02-16
| | | | Also drop support for building examples in library directories.
* lavu: add AV_FRAME_DATA_DOWNMIX_INFO side data type.Tim Walker2014-02-15
|
* doc/examples: misc Doxygen markup improvementsDiego Biurrun2014-02-14
| | | | Add properly formatted @example tag and fix Doxygen syntax.
* build: doxy: Include code examples in Doxygen documentationDiego Biurrun2014-02-14
|
* doxygen: Set EXAMPLE_PATH from within doxy-wrapper.shDiego Biurrun2014-02-14
| | | | This allows using the libav source path as the example path.
* build: Do not pass HTML snippets and stylesheet as input to DoxygenDiego Biurrun2014-02-14
| | | | | These files are referenced elsewhere and only generate warnings if presented to Doxygen as input files.
* Doxyfile: Only set HTML_{HEADER|FOOTER|STYLESHEET} from doxy_wrapper.shDiego Biurrun2014-02-14
|
* Add libx265 encoderDerek Buitenhuis2014-02-12
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* build: fix examples compilation when EXESUF is not emptyChristophe Gisquet2014-02-10
| | | | | | | | | | Due to a wrong substitution doc/examples is not added as a prerequisite for the objects of the example programs. This results in compiler error due to the non-existing output directory. Bug-Id: 636 Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* avplay: add support for seeking to chapter marksAnton Khirnov2014-02-10
|
* doc/APIchanges: mark the place where 9 was branchedAnton Khirnov2014-02-10
|
* doc/APIchanges: fill in missing hashes and datesAnton Khirnov2014-02-10
|
* Mirillis FIC video decoderKostya Shishkov2014-02-08
| | | | | | Does not contain cursor rendering yet. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* lavf: improve handling of sparse streams when muxingLuca Barbato2014-02-04
| | | | | | | | | | | | | | | | | | Currently ff_interleave_packet_per_dts() waits until it gets a frame for each stream before outputting packets in interleaved order. Sparse streams (i.e. streams with much fewer packets than the other streams, like subtitles or audio with DTX) tend to add up latency and in specific cases end up allocating a large amount of memory. Emit the top packet from the packet_buffer if it has a time delta larger than a specified threshold. Original report of the issue and initial proposed solution by mus.svz@gmail.com. Bug-id: 31 Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vf_overlay: add eof_action switchKeith Lawson2014-02-04
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* doc: document correct option to list encodersJohn Stebbins2014-01-29
|
* doc: add decoders.texiJohn Stebbins2014-01-29
| | | | Only documents ac3 decoder options at this point.
* lavc: deprecate CODEC_FLAG_EMU_EDGE and avcodec_get_edge_width().Anton Khirnov2014-01-20
|
* mp3enc: allow omitting the id3v2 header with -id3v2_version 0Anton Khirnov2014-01-17
|
* mp3enc: add an option for disabling the Xing frame.Anton Khirnov2014-01-17
|
* lavfi: add framepack filterVittorio Giovara2014-01-09
|
* ATRAC3+ decoderMaxim Polijakowski2014-01-09
| | | | | | Cleanup by Diego Biurrun. Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* avframe: add AV_FRAME_DATA_MATRIXENCODING side data type.Tim Walker2014-01-05
| | | | Includes a libavcodec utility function to update a frame's side data.
* lavu: Add values for various Dolby flags to the AVMatrixEncoding enum.Tim Walker2014-01-05
|
* Makefile: add html template files to the doxygen depsAnton Khirnov2014-01-01
|