If the nodes are now stateless, there's nothing stopping the renderer from rendering multiple frames at once. Earlier since the nodes held some of their input/output data (and that data could change per frame), it was not possible to render multiple frames at once without conflicts. Now that the node state is held in render threads, they can do whatever they want at any time.
11 lines
234 B
C
11 lines
234 B
C
#ifndef DECODERCACHE_H
|
|
#define DECODERCACHE_H
|
|
|
|
#include "decoder/decoder.h"
|
|
#include "project/item/footage/stream.h"
|
|
#include "rendercache.h"
|
|
|
|
using DecoderCache = ThreadSafeRenderCache<Stream*, DecoderPtr>;
|
|
|
|
#endif // DECODERCACHE_H
|