summaryrefslogtreecommitdiff
path: root/libavfilter/framesync.h
Commit message (Collapse)AuthorAge
* avfilter/framesync: Remove redundant setting of AVClassAndreas Rheinhardt2021-09-23
| | | | | | | | | Every filter exposing the framesync options via its child_next callback already calls framesync_preinit() in its preinit callback. So the filter is already preinited whenever its child_next is called. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avfilter/framesync: Separate framesync AVClass and auxiliary functionsAndreas Rheinhardt2021-09-23
| | | | | | Will be useful for deduplication. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avutil: remove deprecated AVClass.child_class_nextJames Almer2021-04-27
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* framesync: switch to child_class_iterate()Anton Khirnov2020-06-10
|
* lavfi/framesync: Add namespace prefix to framesync_get_classMark Thompson2018-06-24
|
* lavfi/framesync: document frame ownership for dualinput.Nicolas George2018-01-03
|
* lavfi: rename framesync2 to framesync.Nicolas George2017-09-12
|
* lavfi: remove framesync.Nicolas George2017-09-12
|
* avfilter/framesync: allocate FFFrameSyncIn internallyPaul B Mahol2015-08-26
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi: add an API to synchronize multiple video inputs.Nicolas George2013-09-23
Compared to dualinput, this API can handle more than two inputs and can generate frames synchronized to any or all input streams.