| 81 | namespace common |
| 82 | { |
| 83 | class CompressedFrame : public Frame |
| 84 | { |
| 85 | public: |
| 86 | |
| 87 | CompressedFrame(void); |
| 88 | ~CompressedFrame(void); |
| 89 | CompressedFrame &operator= (Frame &f); |
| 90 | void compressYUV(Frame &f); |
| 91 | void compressJPEG(Frame &f); |
| 92 | void compressRGB(Frame &f); |
| 93 | void init(rrframeheader &h, int buffer); |
| 94 | |
| 95 | rrframeheader rhdr; |
| 96 | |
| 97 | private: |
| 98 | |
| 99 | tjhandle tjhnd; |
| 100 | friend class FBXFrame; |
| 101 | }; |
| 102 | } |
| 103 | |
| 104 |
nothing calls this directly
no outgoing calls
no test coverage detected