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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-20lavfi: drop the requirement that request_frame returns a frame.Nicolas George
It requires a loop in filters or the framework, that makes the scheduling less efficient and more complex. This is purely an internal change since the loop is now present in buffersink. Note that no filter except buffersink did rely on the requirement.
2015-08-16doc/filter_design: Remove reference to the deprecated and unused cur_buf_copyMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2013-08-12doc/filter_design.txt: Fix duplicate wordsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-04-01doc: Consistently use 'frame rate' everywhereDerek Buitenhuis
We used to use 'framerate' or 'frame rate' randomly. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2013-03-25lavfi: support multiple rounds of format negotiation.Nicolas George
Remove the temporary hack for amerge and replace it with a generic solution.
2013-02-02doc: update filter_design.txt to API changes.Nicolas George
2012-11-28lavfi: replace filter_samples by filter_frameMichael Niedermayer
Based on patch by Anton Khirnov Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-09-18doc: fix typos in filter documentationBobby Bingham
Signed-off-by: Bobby Bingham <uhmmmm@gmail.com>
2012-08-14filter_design: document ownership and permissions.Nicolas George
2012-07-22doc/filter_design: fix a few typosStefano Sabatini
2012-05-16lavfi: drop planar/packed negotiation supportStefano Sabatini
The planar/packed switch and the packing_formats list is no longer required, since the planar/packed information is now stored in the sample format enum. This is technically a major API break, possibly it should be not too painful as we marked the audio filtering API as unstable.
2012-05-16doc/filter_design: fix a few other typo.Clément Bœsch
2012-05-16doc/filtering_design: fix typo negociation -> negotiationStefano Sabatini
2012-05-14lavfi: document filter design subtleties.Nicolas George
The details on reference ownership and permissions are missing.