summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* doc/codecs: mention error returned for flag AV_CODEC_FLAG_DROPCHANGEDGyan Doshi2019-04-21
|
* doc/mailing-list-faq: auto unsubscribe due to DMARCLou Logan2019-04-20
| | | | Signed-off-by: Lou Logan <lou@lrcd.com>
* lavfi: add colorkey_opencl filterJarek Samic2019-04-20
| | | | | | | This is a direct port of the CPU filter. Signed-off-by: Jarek Samic <cldfire3@gmail.com> Signed-off-by: Mark Thompson <sw@jkqxz.net>
* avfilter: add lagfun filterPaul B Mahol2019-04-20
|
* avfilter/vf_lut3d: add cineSpace 3D lut supportPaul B Mahol2019-04-20
|
* avfilter/vf_lut3d: add cineSpace 1D lut parsingPaul B Mahol2019-04-20
|
* doc/filters: list values for af_surround window functionGyan Doshi2019-04-20
|
* avfilter/af_surround: allow user to change overlap and win_funcPaul B Mahol2019-04-20
|
* doc/APIchanges: update for 3153a6502aGyan Doshi2019-04-20
| | | | Entry for added avcodec flag AV_CODEC_FLAG_DROPCHANGED
* avcodec: add AV_CODEC_FLAG_DROPCHANGED to flagsGyan Doshi2019-04-20
| | | | Discard decoded frames which differ from first decoded frame in stream.
* lavf: bump version/add APIchanges entry when cleanup applehttpJun Zhao2019-04-20
| | | | | | | commit abfeba9 "lavf/hls: Cleanup the applehttp" missed the version bump and APIchanges entry. Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
* doc/mailing-list-faq: add DMARC mungingLou Logan2019-04-18
| | | | Signed-off-by: Lou Logan <lou@lrcd.com>
* doc/encoders: Fix libvpx option name arnr-maxframes.Carl Eugen Hoyos2019-04-18
| | | | Fixes ticket #7856.
* Updated documentation for libaom encoder options.Sam John2019-04-18
| | | | Signed-off-by: Gyan Doshi <ffmpeg@gyani.pro>
* avfilter/af_agate: implement mode optionPaul B Mahol2019-04-17
|
* avfilter/af_sidechaincompress: implement mode optionPaul B Mahol2019-04-17
|
* lavf/hls: Cleanup the applehttpJun Zhao2019-04-15
| | | | | | | | | | | | | | | | | | | | Cleanup the applehttp as demuxer name, when use the command : ffmpeg -formats, get the confused information like: " E hls Apple HTTP Live Streaming D hls,applehttp Apple HTTP Live Streaming " we don't use applehttp as the demuxer/muxer name usually, so cleanup the applehttp and update the documents. After the change, get the information from "ffmpeg -formats": " DE hls Apple HTTP Live Streaming " Reviewed-by: Steven Liu <lq@onvideo.cn> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
* avformat/file: add seekable option to disallow seekingMarton Balint2019-04-11
| | | | Signed-off-by: Marton Balint <cus@passwd.hu>
* doc/examples/metadata: fix the example can't dump FLV metadataJun Zhao2019-04-07
| | | | | | fix the example can't dump FLV metadata. Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
* avcodec/av1_metadata: add an option to remove Padding OBUsJames Almer2019-04-03
| | | | | Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
* avformat/dashenc: Add support for Global SIDXKarthick J2019-04-02
|
* doc/general: make column key note more verboseGyan Doshi2019-04-01
| | | | Addresses #7795
* avformat/doc, http, icecast, rtsp: Add option to disable send-expect-100Jun Li2019-03-31
| | | | | | | | | | Fix ticket #7297 The current setting for send-expect-100 option is either enabled if applicable or forced enabled, no option to force disable the header. This change is to expand the option setting to provide more flexibility, which is useful for rstp case. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/filters: mention input requirements for ebur128Gyan Doshi2019-03-30
| | | | | | The filter requires input stream to have sample rate 48000 Hz and dbl fmt. Fixes #7812
* avfilter/vf_lensfun: add scale parameterDaniel Playfair Cal2019-03-25
| | | | | | | | | | | | | | | | | | | The lensfun filter wraps the lensfun library which performs transformations on videos to correct for lens distortion. Often this results in areas in the input being mapped to areas that fall outside the boundaries of the output. The library has a parameter called scale which is a scale factor applied to the output video. By decreasing it it is possible to regain the areas of the video which would otherwise have been lost. There is a special value of 0 which indicates that the library should automatically determine a scale factor that results in the output frame being filled (i.e. little or no black/unmapped areas). This patch adds a corresponding scale option to the lensfun filter which is passed through to the library. The existing behaviour of using the automatic value of 0 is retained as the default behaviour, while other values will be passed through to the library. Signed-off-by: Daniel Playfair Cal <daniel.playfair.cal@gmail.com>
* doc/filters: indicate range for zoom in lavfi/zoompanGyan Doshi2019-03-25
|
* doc/mailing-list-faq: ffmpeg-devel is now subscription onlyLou Logan2019-03-21
| | | | | | | | | | | Nobody is going to check the queue anymore, so users must now subscribe to send messages to ffmpeg-devel. This will prevent orphaned/ignored messages from rotting in the abandoned queue. This matches the behavior of ffmpeg-user and libav-user. Also, this addresses some other nits. Signed-off-by: Lou Logan <lou@lrcd.com>
* avfilter/af_astats: add support for selecting measured statisticsMarton Balint2019-03-21
| | | | | | | | | | | set_metadata with many entries is not very efficient, and with small audio frames the performance loss is noticable. Also with this very simple calculations (like peak) can be even further optimized. Unfoturnately there are some small differences in metadata and av_log info output, so factorizing calculations and output might not worth the hassle. Signed-off-by: Marton Balint <cus@passwd.hu>
* doc/ffmpeg: muxdelay and muxpreload are output optionsAman Gupta2019-03-20
| | | | Signed-off-by: Aman Gupta <aman@tmm1.net>
* lavd: Remove libndi_newtekCarl Eugen Hoyos2019-03-20
|
* doc/ffmpeg: remove entry for -loop_outputGyan Doshi2019-03-20
| | | | Option doesn't exist .. hasn't for a few years now.
* doc/ffmpeg: add entry for itsscaleGyan Doshi2019-03-16
|
* mpeg12enc: Use Closed Captions if availableMathieu Duponchelle2019-03-16
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/mxfenc: allow user comments for opatom muxerMark Reid2019-03-13
| | | | | Reviewed-by: Tomas Härdin <tjoppen@acc.umu.se> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Merge commit '7e5bde93a1e7641e1622814dafac0be3f413d79b'James Almer2019-03-10
|\ | | | | | | | | | | | | * commit '7e5bde93a1e7641e1622814dafac0be3f413d79b': build: Rename OBJDIRS variable to OUTDIRS Merged-by: James Almer <jamrial@gmail.com>
| * build: Rename OBJDIRS variable to OUTDIRSDiego Biurrun2019-02-16
| | | | | | | | These directories are not just for object files.
| * avcodec: libdav1d AV1 decoder wrapper.James Almer2018-11-06
| | | | | | | | | | | | | | Originally written by Ronald S. Bultje, with fixes, optimizations and improvements by James Almer. Signed-off-by: James Almer <jamrial@gmail.com>
| * pixfmt: Add GRAY10Carl Eugen Hoyos2018-11-06
| | | | | | | | | | | | Based on 7471352f by Luca Barbato. Signed-off-by: James Almer <jamrial@gmail.com>
| * bsf: add a flushing mechanism to AVBSFContextJames Almer2018-08-17
| | | | | | | | | | | | Meant to reset the internal bsf state without the need to reinitialize it. Signed-off-by: James Almer <jamrial@gmail.com>
* | doc/protocols: move option follow entry to correct sectionGyan Doshi2019-03-03
| | | | | | | | | | The entry for file protocol option 'follow' was inserted under ftp options during merge of a Libav commit - 90eb24996913238e1a. Corrected.
* | avfilter/af_anlmdn: add output mode optionPaul B Mahol2019-03-01
| |
* | vaapi_encode: Support more RC modesMark Thompson2019-02-25
| | | | | | | | | | Allow setting the mode explicitly, and try to make a sensible choice given the available parameters if not.
* | doc: -report defaults to loglevel debugGyan Doshi2019-02-25
| |
* | avformat/dashenc: Added option to repeatedly publish master playlistKarthick J2019-02-25
| | | | | | | | The master playlist can be published at a specified interval with this option
* | avfilter/vf_amplify: add tolerance optionPaul B Mahol2019-02-22
| |
* | doc/formats: add reference to ffmpeg(1) stream specifiers as that docs is ↵Marton Balint2019-02-21
| | | | | | | | | | | | more complete Signed-off-by: Marton Balint <cus@passwd.hu>
* | doc/mailing-list-faq: add Mail Delivery infoLou Logan2019-02-20
| | | | | | | | | | | | | | Can be used as a vacation mode to enable/disable mail delivery without needing to unsubscribe. Signed-off-by: Lou Logan <lou@lrcd.com>
* | doc/libav-merge: add a line about the previous skipped mergeJames Almer2019-02-20
| |
* | doc/fftools-common-opts: add example for codec option stream specifiersGyan Doshi2019-02-17
| |
* | doc/muxers: grammar fixReto Kromer2019-02-17
| | | | | | | | Signed-off-by: Gyan Doshi <ffmpeg@gyani.pro>