This repository has been archived on 2021-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
prpa/src/compose.hh

17 lines
320 B
C++

#ifndef COMPOSE_HH_
# define COMPOSE_HH_
# include "tbb/pipeline.h"
# include "encoder/video_reader.hh"
class Compose: public tbb::filter
{
public:
Compose(VideoReader vr): filter(tbb::filter::serial_in_order), vr_(vr) {}
void* operator()(void*);
private:
VideoReader vr_;
};
#endif /* COMPOSE_HH_ */