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
2019-05-14avfilter/vf_stack: Don't modify const stringsAndreas Rheinhardt
b3b7ba62 introduced undefined behaviour: A (non-modifiable) string literal has been assigned to a modifiable string; said string was indeed modified later via av_strtok. This of course caused compiler warnings because of the discarded qualifier; these are in particular fixed by this commit. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
2019-05-07avfilter/vf_xstack: set better error msg forGyan Doshi
missing layout
2019-04-27avfilter/vf_stack: use time_base from framesyncPaul B Mahol
Fixes non-monotonous timestamps.
2018-10-26avfilter: add xstack filterPaul B Mahol
2017-12-03avfilter/vf_stack: always copy SAR from first inputPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2017-09-12lavfi: rename framesync2 to framesync.Nicolas George
2017-07-30lavfi/vf_stack: move to "activate" design.Nicolas George
2016-02-04avfilter/vf_stack: free input pads name on uninitPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-01-27avutil: Rename FF_CEIL_COMPAT to AV_CEIL_COMPATDerek Buitenhuis
Libav, for some reason, merged this as a public API function. This will aid in future merges. A define is left for backwards compat, just in case some person used it, since it is in a public header. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2015-11-26avfilter/vf_stack: make it possible to stop with shortest streamPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-10-14avfilter/all: propagate errors of functions from avfilter/formatsGanesh Ajjanagadde
Many of the functions from avfilter/formats can return errors, usually AVERROR(ENOMEM). This propagates the return values. All of these were found by using av_warn_unused_result, demonstrating its utility. Tested with FATE. I am least sure of the changes to avfilter/filtergraph, since I don't know what/how reduce_format is intended to behave and how it should react to errors. Fixes: CID 1325680, 1325679, 1325678. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Previous version Reviewed-by: Nicolas George <george@nsup.org> Previous version Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
2015-09-05avfilter/vf_stack: Fix memleak of out frameMichael Niedermayer
Fixes CID1322347 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-08-26avfilter: add hstack & vstack filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>