Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2012-06-24doc/filters: fix typo.Anton Khirnov
2012-06-23lavfi: Add the af_channelmap audio channel mapping filter.Alex Converse
Inspired by MPlayer's af_channels filter and SoX's remix effect.
2012-06-22lavfi: add join audio filter.Anton Khirnov
It joins multiple input streams into one multi-channel output.
2012-06-22lavfi: support automatically inserting the fifo filter when needed.Anton Khirnov
This breaks libavfilter ABI.
2012-06-22lavu: add av_usleep() functionMans Rullgard
This function implements a delay using the first available of the following functions: - nanosleep() - usleep() - Sleep() (Windows) The conditional #includes in time.c are simplified by including unistd.h and windows.h whenever they are available rather than having these lines triggered by specific functions. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-21lavf, lavu: version bumps and APIchanges for av_gettime() moveMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-06-20MS Screen 1 decoderKostya Shishkov
2012-06-18Implement the iLBC storage file formatMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-18Add support for iLBC decoding/encoding via the external library libilbcMartin Storsjö
The library is 3-clause BSD licensed. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-18rtmp: Don't send every flv packet in a separate HTTP request in RTMPTSamuel Pitoiset
Add a new option 'rtmp_flush_interval' that allows specifying the number of packets to write before sending it off as a HTTP request. This is mostly relevant for RTMPT - for plain RTMP, it only controls how often we check the socket for incoming packets, which shouldn't affect the performance in any noticeable way. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-18Add Dolby/DPLII downmix support to libavresampleJohn Stebbins
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-06-17RTMPT protocol supportSamuel Pitoiset
This adds two protocols, but one of them is an internal implementation detail just used as an abstraction layer/generalization in the code. The RTMPT protocol implementation uses rtmphttp:// as an alternative to the tcp:// protocol. This allows moving most of the lower level logic out from the higher level generic rtmp code. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-17doc: Add missing protocols to list of supported protocols.Diego Biurrun
2012-06-14doc: document THREAD_TYPE fate variableLuca Barbato
2012-06-13rtmp: Add a new option 'rtmp_buffer', for setting the client buffer timeSamuel Pitoiset
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-13lavfi: replace AVFilterContext.input/output_count with nb_inputs/outputsAnton Khirnov
This is more consistent with naming in the rest of Libav.
2012-06-13lavfi: add avfilter_pad_get_type() and avfilter_pad_get_name().Anton Khirnov
This will allow making AVFilterPad opaque for the calling apps, since those are the only two fields that can be useful to the users.
2012-06-12lavfi: add channelsplit audio filter.Anton Khirnov
2012-06-11rtmp: support connection parametersSamuel Pitoiset
Allow using connection parameters in order to append arbitrary AMF data like "B:1 S:authMe O:1 NN:code:1.23 NS:flag:ok O:0" to the Connect message. You can pass these parameters through the -rtmp_conn option. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-11doc: Add documentation for the newly added rtmp_* optionsSamuel Pitoiset
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-06-10Bump lavu minor and add an APIChanges entry for audioconvert functions.Anton Khirnov
2012-06-05Indeo Audio decoderKostya Shishkov
2012-06-04doc/avconv: add some details about the transcoding process.Anton Khirnov
2012-05-29avconv: extend -r to work on any input stream.Anton Khirnov
This is done by automatically inserting a setpts filter.
2012-05-29doc/avconv: expand documentation for the -s option.Anton Khirnov
2012-05-26avprobe: restore pseudo-INI old style format for compatibility.Anton Khirnov
2012-05-26opt: Add av_opt_set_bin()Samuel Pitoiset
Introduce a new function to set binary data through AVOption, avoiding having to convert the binary data to a string inbetween. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-05-26avprobe: update documentationLuca Barbato
Update the documentation according to the latest changes
2012-05-26rtmp: fix url parsingLuca Barbato
The application component can have a subcomponent to specify the application instance even if it doesn't have a ":" in the playpath.
2012-05-26fate: document TARGET_EXEC and its usageLuca Barbato
TARGET_EXEC allows running FATE on simulators, remote targets and memory checkers. Also document a known issue with Wine and mixed Unix/Windows line ending.
2012-05-24lavfi: add audio mix filterJustin Ruggles
2012-05-21lavfi: add an audio split filterJustin Ruggles
Based on current version of the asplit filter in FFmpeg written by Stefano Sabatini and others.
2012-05-21fate: change name of FATE samples location environment variableDiego Biurrun
FATE_SAMPLES is now used directly by the Makefiles, which induces the test system to run a test with the value of the environment variable as name. Renaming the environment variable to LIBAV_SAMPLES avoids this problem.
2012-05-21avformat: Add a flag to mark muxers that allow (non strict) monotone timestamps.James Zern
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-05-18lavfi: Add fps filter.Anton Khirnov
Partially based on a patch by Robert Nagy <ronag89@gmail.com>
2012-05-18doc: Replace some @file tags by more suitable markup.Diego Biurrun
2012-05-15build: Add 'check' target to run all compile and test targets.Diego Biurrun
2012-05-15Add missing version bumps and APIchanges/Changelog entries.Anton Khirnov
2012-05-14avconv: automatically insert asyncts when -async is used.Anton Khirnov
Deprecate -async.
2012-05-14avconv: add support for audio filters.Anton Khirnov
The FATE changes are all off-by-one due to different rounding being used (lrintf vs av_rescale_q).
2012-05-14lavfi: add asyncts filter.Anton Khirnov
2012-05-14lavfi: add aformat filterAnton Khirnov
Based on a patch by Mina Nagy Zaki <mnzaki@gmail.com>
2012-05-14lavfi: add an audio buffer sink.Anton Khirnov
2012-05-14lavfi: add an audio buffer source.Anton Khirnov
2012-05-14doc: misc improvements for the Windows sectionDiego Biurrun
Fix some orthography, wording and grammar issues; update the SDL section with more current instructions; simplify lib.exe example command line; drop outdated comments about libnut.
2012-05-13doc: fix link to fate.libav.orgDiego Elio Pettenò
Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-05-12lavfi: add lavr-based audio resampling filter.Anton Khirnov
2012-05-09lavc: pad last audio frame with silence when needed.Anton Khirnov
2012-05-09lavfi: add video buffer sink, and use it in avtoolsAnton Khirnov
Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
2012-05-08doc: Replace a stray reference to the old '-intra' flag.Alex Converse