summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* Merge commit 'b0e8651a2a84553d08fbb2f7cb9697bd64fb1b55'Hendrik Leppkes2015-12-07
|\ | | | | | | | | | | | | * commit 'b0e8651a2a84553d08fbb2f7cb9697bd64fb1b55': doc: Amend the MSYS2 Documentation Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * doc: Amend the MSYS2 DocumentationLuca Barbato2015-11-26
| | | | | | | | | | Explain better which environment is discouraged and mention the shortcuts names.
* | doc/filters: add more compand examplesPaul B Mahol2015-12-07
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/af_alimiter: add 3 more optionsPaul B Mahol2015-12-06
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/encoders.texi: fix typo and clarify mpeg2_aac_lowRostislav Pehlivanov2015-12-05
| | | | | | | | | | | | Thanks to Brad Smith for finding the typo. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* | doc/encoders.texi: use words intead of numbers to describe option statesRostislav Pehlivanov2015-12-05
| | | | | | | | Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* | doc/encoders.texi: remove forgotten mention of "experimental" from libvo-aacencRostislav Pehlivanov2015-12-05
| | | | | | | | | | | | Previous documentation commit overlooked that particular mention. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* | doc/encoders.texi: update documentation for the native AAC encoderRostislav Pehlivanov2015-12-05
| | | | | | | | | | | | | | | | Since the next commit removes the experimental flag from the encoder it's better to update the documentation which has been around in its current form for as long as the encoder itself. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* | avfilter/codecview: add QP supportClément Bœsch2015-12-05
| |
* | avfilter: add audio emphasis filterPaul B Mahol2015-12-04
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/af_agate: change default for detection to rmsPaul B Mahol2015-12-03
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/af_agate: add level_sc option for sidechaingate filterPaul B Mahol2015-12-03
| | | | | | | | | | | | Also correct usage of input gain for both filters. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter: add sidechaingate filterPaul B Mahol2015-12-03
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avformat/mpjpeg: utilize MIME boundary value to detect start of new frameAlex Agranovsky2015-12-02
| | | | | | | | | | | | This code is disabled by default so not to regress endpoints sending invalid MIME, but can be enabled via AVOption 'strict_mime_boundary' Signed-off-by: Alex Agranovsky <alex@sighthound.com>
* | git-howto: mention how to clone ffmpeg-webAndreas Cadhalpun2015-12-02
| | | | | | | | Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
* | avfilter: add audio pulsator filterPaul B Mahol2015-12-02
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/filters/drawtext: fix centering exampleAndrey Utkin2015-12-01
| | | | | | | | | | Signed-off-by: Andrey Utkin <andrey.od.utkin@gmail.com> Signed-off-by: Lou Logan <lou@lrcd.com>
* | avfilter/vf_histogram: remove deprecated stuffPaul B Mahol2015-12-01
| | | | | | | | | | | | | | | | Remove all modes except levels mode. Users should already switch to other filters with extended funcionality: vectorscope and waveform. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/af_sidechaincompress: add level_in and level_sc optionsPaul B Mahol2015-11-30
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | developer.texi: Call out K&R coding style.Rick Kern2015-11-29
| | | | | | | | | | | | K&R coding style is implied but not listed in 'Coding Rules'. Signed-off-by: Rick Kern <kernrj@gmail.com>
* | Merge commit '6b7df14251c49331ae7efd4811ec21f4415ccdb5'Hendrik Leppkes2015-11-29
|\| | | | | | | | | | | | | * commit '6b7df14251c49331ae7efd4811ec21f4415ccdb5': doc: Document better how to use MSYS2 Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * doc: Document better how to use MSYS2Luca Barbato2015-11-23
| |
* | Merge commit '462a54e2291e1fa18e1f1254d09739dfbb795617'Hendrik Leppkes2015-11-29
|\| | | | | | | | | | | | | * commit '462a54e2291e1fa18e1f1254d09739dfbb795617': lavc: Deprecate avctx.rtp_callback field Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * lavc: Deprecate avctx.rtp_callback fieldVittorio Giovara2015-11-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This function returns the encoded data of a frame, one slice at a time directly when that slice is encoded, instead of waiting for the full frame to be done. However this field has a debatable usefulness, since it looks like it is just a convoluted way to get data at lowest possible latency, or a somewhat hacky way to store h263 in RFC-2190 rtp encapsulation. Moreover when multi-threading is enabled (which is by default) the order of returned slices is not deterministic at all, making the use of this function not reliable at all (or at the very least, more complicated than it should be). So, for the reasons stated above, and being used by only a single encoder family (mpegvideo), this field is deemed unnecessary, overcomplicated, and not really belonging to libavcodec. Libavformat features a complete implementation of RFC-2190, for any other case. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* | Merge commit '8a9de5c52401aa1e87bdb147524831c640d1ec53'Hendrik Leppkes2015-11-29
|\| | | | | | | | | | | | | * commit '8a9de5c52401aa1e87bdb147524831c640d1ec53': doc/encoders: document the QSV option mappings Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * doc/encoders: document the QSV option mappingsAnton Khirnov2015-11-20
| |
* | avfilter/avf_showvolume: fix several issuesPaul B Mahol2015-11-29
| | | | | | | | | | | | | | | | | | Fix color fading: previously color could fade to red when volume level for red color was actually never reached. Display volume value on right side. Use red color only if clipping is needed. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/filters: extend agate documentationPaul B Mahol2015-11-28
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter: add audio compressor filterPaul B Mahol2015-11-28
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter: add compensation delay line filterPaul B Mahol2015-11-28
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_stack: make it possible to stop with shortest streamPaul B Mahol2015-11-26
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/indevs: fix x11grab options consistencyStefano Sabatini2015-11-25
| |
* | avfilter/af_sidechaincompress: add forgotten optionPaul B Mahol2015-11-25
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/indevs: Fix GermanTimothy Gu2015-11-24
| |
* | lavfi/select: add support for concatdec_select optionMarton Balint2015-11-25
| | | | | | | | | | | | | | | | | | This option can be used to select useful frames from an ffconcat file which is using inpoints and outpoints but where the source files are not intra frame only. Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
* | concatdec: add option for adding segment start time and duration metadataMarton Balint2015-11-25
| | | | | | | | | | Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Marton Balint <cus@passwd.hu>
* | doc/filters: mention afifoPaul B Mahol2015-11-23
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | Merge commit '79ae1e630b476889c251fc905687a3831b43ab5e'Derek Buitenhuis2015-11-22
|\| | | | | | | | | | | | | * commit '79ae1e630b476889c251fc905687a3831b43ab5e': avcodec: Define side data type for fallback track Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * avcodec: Define side data type for fallback trackJohn Stebbins2015-11-18
| | | | | | | | | | | | | | | | | | This side data type is meant to be added to AVStream side data. A fallback track indicates an alternate track to use when the current track can not be decoded for some reason. e.g. no decoder available for codec. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | Merge commit '7f4ec4364bc4a73036660c1c6a3c4801db524e9e'Derek Buitenhuis2015-11-22
|\| | | | | | | | | | | | | | | | | | | * commit '7f4ec4364bc4a73036660c1c6a3c4801db524e9e': avformat: expose av_stream_new_side_data helper Conflicts: libavformat/internal.h Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * avformat: expose av_stream_new_side_data helperJohn Stebbins2015-11-18
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | Merge commit '588b6215b4c74945994eb9636b0699028c069ed2'Derek Buitenhuis2015-11-22
|\| | | | | | | | | | | | | | | | | | | | | * commit '588b6215b4c74945994eb9636b0699028c069ed2': rtmpcrypt: Do the xtea decryption in little endian mode xtea: Add functions for little endian mode Conflicts: libavutil/xtea.c Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * xtea: Add functions for little endian modeMartin Storsjö2015-11-13
| | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
| * setpts: add FRAME_RATE constantStefano Sabatini2015-11-09
| | | | | | | | | | | | | | | | Useful for dealing with constant frame-rate video. (cherry picked from ffmpeg commit 722762f7e1212b4d02142778fabfdd73375722e0) Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add a frame_rate field to AVFilterLink.Nicolas George2015-11-09
| | | | | | | | | | | | (cherry picked from ffmpeg commit 7b42036b3b23c85f473bf9369e37fa8da22eaf93) Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | avformat: add VPK demuxerPaul B Mahol2015-11-19
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avutil/mem: Add av_fast_mallocz()Michael Niedermayer2015-11-18
| | | | | | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | avformat: add IVR demuxerPaul B Mahol2015-11-18
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avformat/mxfenc: Only store user comment related tags when neededMichael Niedermayer2015-11-10
| | | | | | | | | | | | | | | | | | | | Also support disabling them as they seem to cause problems to some Users. They are also not allowed in IRT D-10 thus the default for mxf_d10 is not to write them This also decreases the filesize when no user comment are stored Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | doc/ffmpeg: Clarify that the sdp_file option requires an rtp output.Simon Thelen2015-11-09
| | | | | | | | | | Signed-off-by: Simon Thelen <ffmpeg-dev@c-14.de> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>