-
- Downloads
lavfi: make filter_frame non-recursive.
A lot of changes happen at the same time: - Add a framequeue fifo to AVFilterLink. - split AVFilterLink.status into status_in and status_out: requires changes to the few filters and programs that use it directly (f_interleave, split, filtfmts). - Add a field ready to AVFilterContext, marking when the filter is ready and its activation priority. - Add flags to mark blocked links. - Change ff_filter_frame() to enqueue the frame. - Change all filtering functions to update the ready field and the blocked flags. - Update ff_filter_graph_run_once() to use the ready field. - buffersrc: always push the frame immediately.
Showing
- libavfilter/avfilter.c 381 additions, 76 deletionslibavfilter/avfilter.c
- libavfilter/avfilter.h 52 additions, 19 deletionslibavfilter/avfilter.h
- libavfilter/avfiltergraph.c 17 additions, 36 deletionslibavfilter/avfiltergraph.c
- libavfilter/buffersink.c 16 additions, 5 deletionslibavfilter/buffersink.c
- libavfilter/buffersrc.c 3 additions, 3 deletionslibavfilter/buffersrc.c
- libavfilter/f_interleave.c 6 additions, 2 deletionslibavfilter/f_interleave.c
- libavfilter/internal.h 6 additions, 0 deletionslibavfilter/internal.h
- libavfilter/split.c 4 additions, 1 deletionlibavfilter/split.c
- libavfilter/tests/filtfmts.c 3 additions, 0 deletionslibavfilter/tests/filtfmts.c
- libavfilter/vf_extractplanes.c 5 additions, 1 deletionlibavfilter/vf_extractplanes.c
Loading
Please register or sign in to comment