| 89 | { |
| 90 | public: |
| 91 | VaapiFrame(VaapiImage *vi): |
| 92 | Frame(vi->image.width, vi->image.height, vi->image.format.bits_per_pixel/8, (unsigned char*)-1) |
| 93 | { |
| 94 | data = NULL; |
| 95 | rawdata = reinterpret_cast<unsigned char*>(vi); |
| 96 | } |
| 97 | |
| 98 | virtual ~VaapiFrame() |
| 99 | { |
nothing calls this directly
no outgoing calls
no test coverage detected