summaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* avplay: drop -vismv option which does not do anything anymoreAnton Khirnov2013-10-311-2/+0
|
* Add raw HEVC demuxerDirk Farin2013-10-311-0/+1
| | | | Signed-off-by: Anton Khirnov <[email protected]>
* Add HEVC decoderGuillaume Martres2013-10-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | Initially written by Guillaume Martres <[email protected]> as a GSoC project. Further contributions by the OpenHEVC project and other developers, namely: Mickaël Raulet <[email protected]> Seppo Tomperi <[email protected]> Gildas Cocherel <[email protected]> Khaled Jerbi <[email protected]> Wassim Hamidouche <[email protected]> Vittorio Giovara <[email protected]> Jan Ekström <[email protected]> Anton Khirnov <[email protected]> Martin Storsjö <[email protected]> Luca Barbato <[email protected]> Yusuke Nakamura <[email protected]> Reimar Döffinger <[email protected]> Diego Biurrun <[email protected]> Signed-off-by: Anton Khirnov <[email protected]>
* h264: wait for initial complete frame before outputing framesJohn Stebbins2013-10-311-0/+3
| | | | | | | | This can be optionally disabled whith the "output_corrupt" flags option. When in "output_corrupt" mode, incomplete frames are signalled through AVFrame.flags FRAME_FLAG_INCOMPLETE_FRAME. Signed-off-by: Anton Khirnov <[email protected]>
* HNM4/HNM4A demuxer & video decoderDavid Kment2013-10-311-0/+3
| | | | Signed-off-by: Diego Biurrun <[email protected]>
* avplay: Accept cpuflags optionLuca Barbato2013-10-222-4/+4
| | | | | | Quite useful for debugging. Signed-off-by: Luca Barbato <[email protected]>
* lavfi: allow user-provided execute() callbacksAnton Khirnov2013-09-281-0/+4
|
* pcm: support 24-bit/32-bit little-endian planarPaul B Mahol2013-09-271-1/+3
| | | | | | Used by LXF. Signed-off-by: Luca Barbato <[email protected]>
* tls: Add support for listen modeMartin Storsjö2013-09-261-0/+13
| | | | | | | | | Also add options for specifying a certificate and key, which can be used both when operating as client and as server. Partially based on a patch by Peter Ross. Signed-off-by: Martin Storsjö <[email protected]>
* tls: Add options for verifying the peer certificateMartin Storsjö2013-09-261-0/+33
| | | | | | | | | | | | | | | | | | | | A file containing the trusted CA certificates needs to be supplied via the ca_file AVOption, unless the TLS library has got a system default file/database set up. This doesn't check the hostname of the peer certificate with openssl, which requires a non-trivial piece of code for manually matching the desired hostname to the string provided by the certificate, not provided as a library function. That is, with openssl, this only validates that the received certificate is signed with the right CA, but not that it is the actual server we think we're talking to. Verification is still disabled by default since we can't count on a proper CA database existing at all times. Signed-off-by: Martin Storsjö <[email protected]>
* doc/filters: fix an option name in the unsharp docsAnton Khirnov2013-09-241-1/+1
|
* lavu: Add interleaved 4:2:2 8/10-bit formatsKieran Kunhya2013-09-211-0/+4
| | | | Signed-off-by: Luca Barbato <[email protected]>
* Add a WebP decoderJustin Ruggles2013-09-181-0/+2
| | | | | Container and lossy decoding by Aneesh Dogra <[email protected]> Lossless decoding by Justin Ruggles <[email protected]>
* doc: Add missing hashes and dates to APIChangesLuca Barbato2013-09-171-14/+14
| | | | Also fix the typo in the last entry version.
* mem: Introduce av_reallocpLuca Barbato2013-09-161-0/+3
|
* doc: Drop VDPAU from list of supported codecsDiego Biurrun2013-09-101-2/+0
|
* doc: Describe TB option of setpts filterClifford Wolf2013-09-041-0/+3
| | | | Signed-off-by: Diego Biurrun <[email protected]>
* cosmetics: Fix ATRAC codec name spellingDiego Biurrun2013-09-021-2/+2
|
* configure: Add docdir configuration optionVittorio Giovara2013-08-311-2/+9
| | | | Signed-off-by: Luca Barbato <[email protected]>
* doc: document the asf demuxerLuca Barbato2013-08-281-1/+12
| | | | And drop a typo from the previous FLV entry.
* doc: Document the flv demuxerLuca Barbato2013-08-271-0/+11
|
* movenc: add faststart option for web streamingClément Bœsch2013-08-211-0/+4
| | | | | | | Faststart moves the moov atom to the beginning of the file and rewrites the rest of the file after muxing is complete. Signed-off-by: Martin Storsjö <[email protected]>
* vf_fps: add 'start_time' optionJustin Ruggles2013-08-201-0/+8
| | | | This allows for dropping or duplication to match a particular start time.
* doc: Clarify the avconv section about -reMartin Storsjö2013-08-101-1/+4
| | | | Signed-off-by: Martin Storsjö <[email protected]>
* doc: Add an example on publishing over RTMPMartin Storsjö2013-08-101-0/+6
| | | | Signed-off-by: Martin Storsjö <[email protected]>
* doc: Add librtmp to the section header for the librtmp specific detailsMartin Storsjö2013-08-101-1/+1
| | | | Signed-off-by: Martin Storsjö <[email protected]>
* doc: Explain that the default RTMP user agent is different when publishingMartin Storsjö2013-08-101-1/+2
| | | | | | | | | The fact that a different user agent is used is cruicial for getting publishing authentication working. (When using librtmp, this other user agent has to be specified manually, but that's not needed with the libavformat internal RTMP support.) Signed-off-by: Martin Storsjö <[email protected]>
* doc: Extend the rtmp example to include how to pass username/passwordMartin Storsjö2013-08-101-1/+7
| | | | Signed-off-by: Martin Storsjö <[email protected]>
* lavc: Add refcounted api to AVPacketLuca Barbato2013-08-101-0/+4
| | | | Provide a clean way to manipulate packets.
* Voxware MetaSound decoderKostya Shishkov2013-08-081-0/+2
|
* lavf: Support unix socketsLuca Barbato2013-08-051-0/+20
|
* libx264: add shortcut for the bluray compatibility optionLuca Barbato2013-08-051-0/+3
| | | | As for intra-refresh it is just a commodity.
* vdpau: deprecate bitstream buffers within the hardware contextRémi Denis-Courmont2013-08-051-0/+4
| | | | | | | | The bitstream buffers are now private and freed by libavcodec. For backward compatibility, the hold bitstream buffer pointer is left NULL (applications were supposed to av_freep() it). Signed-off-by: Anton Khirnov <[email protected]>
* vdpau: deprecate VDPAU codec capabilityRémi Denis-Courmont2013-08-051-0/+4
| | | | Signed-off-by: Anton Khirnov <[email protected]>
* vdpau: deprecate old codec-specific pixel formatsRémi Denis-Courmont2013-08-051-0/+3
| | | | Signed-off-by: Anton Khirnov <[email protected]>
* avconv: make input -ss accurate when transcodingAnton Khirnov2013-08-051-3/+15
| | | | | Insert (a)trim filters on the corresponding inputs, so the extra frames are decoded and discarded.
* avcodec: Add output_picture_number to AVCodecParserContextYusuke Nakamura2013-08-021-0/+3
| | | | | | Set output_picture_number in H.264 parser. Signed-off-by: Diego Biurrun <[email protected]>
* doc/print_options: Move options headers to a saner placeDiego Biurrun2013-08-021-4/+2
|
* Give less generic names to global library option arraysDiego Biurrun2013-08-021-2/+2
|
* avconv: add -n option to immediately exit when output files already existVittorio Giovara2013-07-311-0/+3
| | | | Signed-off-by: Martin Storsjö <[email protected]>
* avisynth: Fix a "AVISynth" vs. "AviSynth" struct name typoDiego Biurrun2013-07-291-1/+1
| | | | Also fix some similar typos in comments and documentation.
* doc: cosmetics: Consistently format list and table itemsDiego Biurrun2013-07-272-207/+310
|
* miscellaneous typo fixesDiego Biurrun2013-07-251-2/+2
|
* doc/platform: Add info about ICLDerek Buitenhuis2013-06-241-9/+19
| | | | Signed-off-by: Derek Buitenhuis <[email protected]>
* lavc: Add option to encode MPEG-2 AAC with libfdk-aacKieran Kunhya2013-06-241-0/+3
| | | | Signed-off-by: Anton Khirnov <[email protected]>
* lavc: add a libwavpack encoder wrapperAnton Khirnov2013-06-102-1/+39
|
* mem: Add av_realloc_array and av_reallocp_arrayMartin Storsjö2013-06-041-0/+3
| | | | | | These help avoiding overflows and simplify error handling. Signed-off-by: Martin Storsjö <[email protected]>
* Go2Webinar decoderKostya Shishkov2013-06-031-0/+2
|
* proresenc: alpha coding supportKostya Shishkov2013-05-301-0/+6
|
* doc: Mention the target_samples and ld variables for fate configsMartin Storsjö2013-05-291-0/+2
| | | | Signed-off-by: Martin Storsjö <[email protected]>