aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/thread_queue.h
Commit message (Collapse)AuthorAgeFilesLines
* fftools/thread_queue: switch from AVFifo+ObjPool to AVContainerFifoAnton Khirnov2024-12-151-5/+5
| | | | | | The queue needs to track each frame/packet's stream index, this is achieved by maintaining a parallel AVFifo instance for that purpose. This is simpler than implementing custom AVContainerFifo callbacks.
* fftools: add a multistream thread-safe queueAnton Khirnov2022-07-231-0/+81
It is similar to AVThreadMessageQueue, but supports multiple streams, each with its own EOF state.