summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* avconv: remove -same_quantAnton Khirnov2012-10-09
| | | | | | | It has not worked for anything other than fringe codecs (asv1/2, mdec, mjpeg[b]) since about 2003 and nobody ever noticed or complained. This sufficiently proves that there are no users of this option who have a clue of what they are doing, so it is completely useless.
* doc: allow building with old texi2html versionsMans Rullgard2012-10-08
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* doc: support the new website layoutLuca Barbato2012-10-08
|
* doc: remove a warning from filters.texiLuca Barbato2012-10-08
| | | | The tag @table expects @item to mark entries.
* doc: initial nut documentationLuca Barbato2012-10-08
|
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-08
|
* pixfmt: add AV_ prefixes to PIX_FMT_*Anton Khirnov2012-10-08
|
* doc/RELEASE_NOTES: update for the 9 release.Anton Khirnov2012-10-06
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* doc/APIchanges: fill in missing dates and hashes.Anton Khirnov2012-10-05
|
* lavr: bump major to 1 and declare it stable.Anton Khirnov2012-10-05
|
* Opus encoder using libopusNathan Caldwell2012-10-01
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* doc/platform: Rework the Visual Studio linking sectionDerek Buitenhuis2012-09-28
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* doc/faq: Change the Visual Studio entry to reflect current statusDerek Buitenhuis2012-09-28
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* doc/platform: Replace Visual Studio section with build instructionsDerek Buitenhuis2012-09-28
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* doc/platform: Nuke section on linking static MinGW-built libs with MSVCDerek Buitenhuis2012-09-28
| | | | | | | | This practice is not supported by the MinGW developers, and even requires patching the MinGW runtimes in newer versions. Furthermore, we now support build with MSVC, so this section is rendered useless. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* doc/platform: Remove false claim about MinGW installerDerek Buitenhuis2012-09-28
| | | | | | | This works just fine, and has for quite a while, using the mingw-get installer. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* doc/platform: Mention MinGW-w64Derek Buitenhuis2012-09-28
| | | | | | This is the toolchain most, including Libav's nightlies, use to build. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* Opus decoder using libopusNicolas George2012-09-28
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavc: add avcodec_free_frame().Anton Khirnov2012-09-24
| | | | | Since an AVFrame now has malloced members (extended_data), it must have a destructor.
* Enhance doc on asyncts audiofilterAndrey Utkin2012-09-15
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavu/audioconvert: add a second low frequency channel.Tim Walker2012-09-12
| | | | | | Can be used by DTS-HD, TrueHD and E-AC-3, among others. Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* avopt: Reorder the default_val struct, making i64 the first fieldMartin Storsjö2012-09-04
| | | | | | Also mention this change in APIchanges. Signed-off-by: Martin Storsjö <martin@martin.st>
* MSS2 decoderAlberto Delmás2012-08-31
| | | | Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* avconv: make the -passlogfile option per-stream.Anton Khirnov2012-08-30
|
* avconv: make the -pass option per-stream.Anton Khirnov2012-08-30
|
* lavc: add lossy/lossless codec properties.Anton Khirnov2012-08-30
|
* Add reminders to update the codec descriptor list with new codec IDs.Anton Khirnov2012-08-29
|
* doc/APIchanges: add an entry for codec descriptors.Anton Khirnov2012-08-23
| | | | Also fill in missing dates and hashes.
* lavc: add Ut Video encoderJan Ekström2012-08-20
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avtools: add -h demuxer/muxerAnton Khirnov2012-08-19
|
* cmdutils: extend -h to allow printing codec details.Anton Khirnov2012-08-19
|
* avconv: deprecate -isync.Anton Khirnov2012-08-19
| | | | | | This option does not do anything. Also remove OPT_GRAB, since -isync is the last option using it.
* cmdutils: refactor -codecs option.Anton Khirnov2012-08-18
| | | | | | | Make it print a list of AVCodecDescriptors. Add new -decoders and -encoders options that print lists of decoders and encoders respectively.
* avconv: make -shortest a per-output file option.Anton Khirnov2012-08-18
|
* doc: Fix syntax errors in sample Emacs configJordi Ortiz2012-08-17
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* rtmp: Add support for receiving incoming streamsJordi Ortiz2012-08-16
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* Don't include common.h from avutil.hMartin Storsjö2012-08-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtmp: Automatically compute the hash for SWFVerificationSamuel Pitoiset2012-08-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtmp: Add support for SWFVerificationSamuel Pitoiset2012-08-15
| | | | | | | | | Specifies how the server verifies client SWF files before allowing the files to connect to an application. Verifying SWF files is a security measure that prevents someone from creating their own SWF files that can attempt to stream your resources. Signed-off-by: Martin Storsjö <martin@martin.st>
* lavc: fix mixing CODEC_ID/AV_CODEC_ID in C++ code.Anton Khirnov2012-08-10
| | | | | | | C++ does not allow to mix different enums, so e.g. code comparing ACodecID with CodecID would fail to compile with gcc. This very evil hack should fix this problem.
* dict: add av_dict_count()Mans Rullgard2012-08-10
| | | | | | | | This adds a function to retrieve the number of entries in a dictionary and updates the places directly accessing what should be an opaque struct to use this new function instead. Signed-off-by: Mans Rullgard <mans@mansr.com>
* doc: Drop obsolete shared libs cflags hint to workaround Cygwin gcc bugsDiego Biurrun2012-08-09
|
* vsrc_movie: discourage its use with avconv.Anton Khirnov2012-08-08
|
* avconv: allow no input files.Anton Khirnov2012-08-08
| | | | It is now possible to use lavfi sources.
* doc: cygwin: Update list of FATE package requirementsDiego Biurrun2012-08-07
|
* rtmp: Add a new option 'rtmp_subscribe'Samuel Pitoiset2012-08-07
| | | | | | | This option specifies the name of live stream to subscribe. Defaults to rtmp_playpath. Signed-off-by: Martin Storsjö <martin@martin.st>
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* lavc: add AV prefix to codec ids.Anton Khirnov2012-08-07
|
* x86: build: replace mmx2 by mmxextDiego Biurrun2012-08-03
| | | | | | | Refactoring mmx2/mmxext YASM code with cpuflags will force renames. So switching to a consistent naming scheme beforehand is sensible. The name "mmxext" is more official and widespread and also the name of the CPU flag, as reported e.g. by the Linux kernel.
* Canopus Lossless decoderDerek Buitenhuis2012-08-01
| | | | | | At the moment it only does BGR24, but I plan to add the rest after. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>