summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* lavf: add functions for accessing the fourcc<->CodecID mapping tables.Anton Khirnov2012-01-31
| | | | Fixes bug 212.
* lavc: add avcodec_is_open().Anton Khirnov2012-01-31
| | | | | | | It allows to check whether an AVCodecContext is open in a documented way. Right now the undocumented way this check is done in lavf/lavc is by checking whether AVCodecContext.codec is NULL. However it's desirable to be able to set AVCodecContext.codec before avcodec_open2().
* avconv: deprecate the -deinterlace optionAnton Khirnov2012-01-30
| | | | Its quality is horrible, yadif should always be used instead.
* doc: Fix the name of the new functionMartin Storsjö2012-01-30
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* doc: Document mov/mp4 fragmentation optionsMartin Storsjö2012-01-30
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* avutil: make intfloat api publicPaul B Mahol2012-01-30
| | | | | | | | The functions are already av_ prefixed and intfloat header is already provided. Install libavutil/intfloat.h Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* APIchanges: mention avcodec_alloc_context()/2/3Anton Khirnov2012-01-28
| | | | | There was no minor bump for making avcodec_alloc_context3() public and deprecating the other two, so I'm using the first next lavc bump.
* lavf: increase major version from 53 to 54.Anton Khirnov2012-01-27
|
* lavc: increase major version to 54.Anton Khirnov2012-01-27
| | | | | The lavf-ffm test results change because ffmenc writes AVCodecContext.flags/flags2 and the defaults for those change.
* doc: Update APIchanges with info on muxer flushingMartin Storsjö2012-01-25
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Remove ffmpeg.Anton Khirnov2012-01-23
|
* XWD encoder and decoderPaul B Mahol2012-01-23
| | | | Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* doc/APIChanges: fill in missing dates and hashesAnton Khirnov2012-01-21
|
* RELEASE_NOTES: mention hiding private symbols in shared builds.Anton Khirnov2012-01-18
|
* RELEASE_NOTES: mention some notable API changes in 0.8Anton Khirnov2012-01-18
|
* add SMJPEG muxerPaul B Mahol2012-01-16
| | | | Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* avcodec: bump minor version and add APIChanges for the new audio encoding APIJustin Ruggles2012-01-15
|
* lavfi: move version macros to a new installed header version.hAnton Khirnov2012-01-12
|
* doc: Replace ffmpeg references in avserver config file by avconv.Diego Biurrun2012-01-11
|
* doc: Fix names of av_log color environment variables.Diego Biurrun2012-01-11
|
* Fix a bunch of platform name and other typos.Diego Biurrun2012-01-11
|
* No longer build libpostproc by defaultReinhard Tartler2012-01-11
| | | | | | | update documentation to inform developers that it may be removed in a later release. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
* doc: fix stray reference to FFmpegLuca Barbato2012-01-10
|
* faq: Solutions for common problems with sample paths when running FATE.Diego Biurrun2012-01-07
|
* avconv: add symbolic names for -vsync parametersAnton Khirnov2012-01-04
|
* v4l2: list available formatsLuca Barbato2012-01-04
| | | | Make use of the experimental framesize enumeration ioctl if available.
* adx: add an adx muxerJustin Ruggles2012-01-03
|
* APIchanges: mention cleaned up header includesJonathan Nieder2012-01-04
| | | | | | | Fixes bug 188. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* lavu: bump lavu minor for av_popcount64Janne Grunau2012-01-03
| | | | Add it to doc/APIchanges and update and correct other entries.
* Release notes: mention cleaned up header includesReinhard Tartler2012-01-02
| | | | | A rebuild in debian revealed that this broke compilation of a number packages: http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=siretart@tauware.de;tag=ftbfs-libav0.8
* doxygen: cleanup style to support older doxyLuca Barbato2011-12-29
| | | | | Doxygen 1.7.5.1 had been used as reference while certain distributions provide older and not fully compatible versions.
* avformat: Add SMJPEG demuxer.Paul B Mahol2011-12-28
| | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Indeo 4 decoderKostya Shishkov2011-12-28
| | | | Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* doxygen: remove unreplaced variables from custom header and footerJanne Grunau2011-12-27
|
* Add minor bumps and APIchanges entries for lavc/lavfi changes.Anton Khirnov2011-12-25
|
* doxy: add website-alike style to the html outputGautam Gupta2011-12-25
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* FAQ: add an entry for common error when using -profileAnton Khirnov2011-12-25
|
* Prepare for 0.8_beta1 snapshot releaseReinhard Tartler2011-12-23
|
* segment: introduce segmented chain muxerLuca Barbato2011-12-19
| | | | It behaves similarly to image2 muxer
* APIchanges: fill in revision for AVFrame.age deprecationMans Rullgard2011-12-18
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* avcodec: deprecate AVFrame.ageMans Rullgard2011-12-18
| | | | | | | | This was intended as an optimisation for skipped blocks in MPEG2 P-frames and never used elsewhere. Removing this "optimisation" speeds up MPEG2 decoding by 1-2% (ARM Cortex-A9). Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavf: add OpenMG audio muxer.Michael Karcher2011-12-18
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avconv: support stream specifiers in -metadata and -map_metadataAlexandra Khirnova2011-12-16
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* v410 encoder and decoderDerek Buitenhuis2011-12-13
| | | | | | | | v410 is a packed 10-bit 4:4:4 YCbCr format used in QuickTime. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
* doc: make developer.texi point to correct fate docDerek Buitenhuis2011-12-13
| | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavf: add avformat_close_input().Anton Khirnov2011-12-12
| | | | | | | It sets the supplied AVFormatContext pointer to NULL after freeing it, which is safer and its name is consistent with other lavf functions. Also deprecate av_close_input_file().
* Fix a bunch of common typos.Diego Biurrun2011-12-11
|
* Warn about avserver being broken.Anton Khirnov2011-12-10
| | | | Also remove mentions of it from other avtools' manuals.
* doc: update to refer to avconvLuca Barbato2011-12-10
|
* doc: remove some stale entries from the faqLuca Barbato2011-12-10
| | | | Some entries should be still amended.