1. 24 Dec, 2016 3 commits
  2. 23 Dec, 2016 11 commits
  3. 22 Dec, 2016 12 commits
  4. 21 Dec, 2016 6 commits
  5. 20 Dec, 2016 3 commits
  6. 19 Dec, 2016 3 commits
  7. 18 Dec, 2016 2 commits
    • Nicolas George's avatar
      lavfi: make filter_frame non-recursive. · 02aa0701
      Nicolas George authored
      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.
      02aa0701
    • Nicolas George's avatar
      lavfi: add FFFrameQueue API. · 62b11db0
      Nicolas George authored
      62b11db0