Logo
ApraPipes 1.0
Loading...
Searching...
No Matches
JPEGDecoderL4TM.h
1#pragma once
2
3#include "Module.h"
4
6{
7public:
12};
13
14class JPEGDecoderL4TM : public Module
15{
16
17public:
19 virtual ~JPEGDecoderL4TM();
20 bool init();
21 bool term();
22
23protected:
24 bool process(frame_container& frames);
25 bool processSOS(frame_sp& frame);
26 bool validateInputPins();
27 bool validateOutputPins();
28
29private:
30 class Detail;
31 boost::shared_ptr<Detail> mDetail;
32};
Definition JPEGDecoderL4TM.h:6
JPEGDecoderL4TMProps()
Definition JPEGDecoderL4TM.h:8
Definition JPEGDecoderL4TM.cpp:12
Definition JPEGDecoderL4TM.h:15
bool init()
Definition JPEGDecoderL4TM.cpp:119
bool process(frame_container &frames)
Definition JPEGDecoderL4TM.cpp:141
virtual ~JPEGDecoderL4TM()
Definition JPEGDecoderL4TM.cpp:79
bool term()
Definition JPEGDecoderL4TM.cpp:136
boost::shared_ptr< Detail > mDetail
Definition JPEGDecoderL4TM.h:31
JPEGDecoderL4TM(JPEGDecoderL4TMProps _props=JPEGDecoderL4TMProps())
Definition JPEGDecoderL4TM.cpp:74
bool validateOutputPins()
Definition JPEGDecoderL4TM.cpp:100
bool validateInputPins()
Definition JPEGDecoderL4TM.cpp:81
bool processSOS(frame_sp &frame)
Definition JPEGDecoderL4TM.cpp:161
Definition Module.h:33
Definition Module.h:151