| 109 | ScreenRecorder::ScreenRecorder() : LogTag("screenrec") { traceScope(); } |
| 110 | |
| 111 | ScreenRecorder::~ScreenRecorder() { |
| 112 | traceScope(); |
| 113 | if (nullptr != m_thread) { |
| 114 | stop(); |
| 115 | } |
| 116 | cleanupInput(); |
| 117 | cleanupOutput(); |
| 118 | } |
| 119 | |
| 120 | void ScreenRecorder::cleanupInput() { |
| 121 | traceScope(); |
nothing calls this directly
no outgoing calls
no test coverage detected