summaryrefslogtreecommitdiff
path: root/libavfilter/vf_detelecine.c
Commit message (Collapse)AuthorAge
* avfilter/vf_detelecine: fix obvious frame memory leaksPaul B Mahol2019-01-02
|
* avfilter: don't anonymously typedef structsPaul B Mahol2017-05-13
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi: split frame_count between input and output.Nicolas George2016-11-13
| | | | | | | | | | | | 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.
* avfilter/vf_detelecine: Remove redundant declarationMichael Niedermayer2016-03-19
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Fix start_frame handling in detelecine filterBenjamin Steffes2016-03-19
| | | | | Signed-off-by: Benjamin Steffes <benjaminst123@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Fix detelecine filter for patterns containing 1Benjamin Steffes2016-03-19
| | | | | Signed-off-by: Benjamin Steffes <benjaminst123@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Fix detelecine filter for patterns like 3444 or 33333334.Benjamin Steffes2016-03-16
| | | | | Signed-off-by: Benjamin Steffes <benjaminst123@gmail.com> Signed-off-by: Carl Eugen Hoyos <cehoyos@ag.or.at>
* avutil: Rename FF_CEIL_COMPAT to AV_CEIL_COMPATDerek Buitenhuis2016-01-27
| | | | | | | | | | 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>
* avfilter/all: propagate errors of functions from avfilter/formatsGanesh Ajjanagadde2015-10-14
| | | | | | | | | | | | | | | | | | 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>
* lavfi: remove FF_LINK_FLAG_REQUEST_LOOP.Nicolas George2015-09-20
| | | | It has no longer any effect.
* avfilter: handle error in query_formats() in bunch of filtersPaul B Mahol2015-04-08
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/vf_detelecine: Fix uninitialized array index errorHimangi Saraogi2015-03-31
| | | | | | Fixes the defect CID 1292301 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi: add inverse telecine filterHimangi Saraogi2015-03-27
Approved-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>