Destructor
| 108 | |
| 109 | // Destructor |
| 110 | Frame::~Frame() { |
| 111 | // Clear all pointers |
| 112 | image.reset(); |
| 113 | audio.reset(); |
| 114 | #ifdef USE_OPENCV |
| 115 | imagecv.release(); |
| 116 | #endif |
| 117 | } |
| 118 | |
| 119 | // Display the frame image to the screen (primarily used for debugging reasons) |
| 120 | void Frame::Display() |