houxiao
2017-01-09 0b1de1fddd889cf2ebbe578bfad83862f5ebdf5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _PL_PL_AVFrameBGRA_H_
#define _PL_PL_AVFrameBGRA_H_
 
#include "PipeLine.h"
 
class PL_AVFrameBGRA : public PipeLineElem
{
public:
    PL_AVFrameBGRA();
    virtual ~PL_AVFrameBGRA();
 
    virtual bool init(void* args);
    virtual void finit();
 
    virtual bool pay(const PipeMaterial& pm);
    virtual bool gain(PipeMaterial& pm);
    
private:
    void* internal;
};
 
PipeLineElem* create_PL_AVFrameBGRA();
 
#endif