Constructor
| 188 | |
| 189 | // Constructor |
| 190 | AudioPlaybackThread::AudioPlaybackThread(openshot::VideoCacheThread* cache) |
| 191 | : juce::Thread("audio-playback") |
| 192 | , player() |
| 193 | , transport() |
| 194 | , mixer() |
| 195 | , source(NULL) |
| 196 | , sampleRate(0.0) |
| 197 | , numChannels(0) |
| 198 | , is_playing(false) |
| 199 | , time_thread("audio-buffer") |
| 200 | , videoCache(cache) |
| 201 | { |
| 202 | } |
| 203 | |
| 204 | // Destructor |
| 205 | AudioPlaybackThread::~AudioPlaybackThread() |
nothing calls this directly
no outgoing calls
no test coverage detected