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
2017-02-03avfilter/vf_fieldhint: Free out AVFrame on errorMichael Niedermayer
Fixes memleak Fixes part of CID1197065 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-11-13lavfi: split frame_count between input and output.Nicolas George
AVFilterLink.frame_count is supposed to count the number of frames that were passed on the link, but with min_samples, that number is not always the same for the source and destination filters. With the addition of a FIFO on the link, the difference will become more significant. Split the variable in two: frame_count_in counts the number of frames that entered the link, frame_count_out counts the number of frames that were sent to the destination filter.
2016-05-29avfilter/vf_fieldhint: Reorder operation to prevent hypothetical integer ↵Michael Niedermayer
overflow Fixes CID1355110 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-05-29avfilter/vf_fieldhint: Assert that mode is validMichael Niedermayer
Its checked by the AVOption code Fixes CID1355122 Fixes CID1355121 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-02-16avfilter: add fieldhint filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>