comparison audio/AudioCallbackPlaySource.cpp @ 558:206d65e2b69a 3.0-integration

Remove unused signal
author Chris Cannam
date Mon, 12 Dec 2016 17:15:24 +0000
parents 2683a8ca36ea
children 7b115a6505b8
comparison
equal deleted inserted replaced
557:7759c2dca846 558:206d65e2b69a
264 m_fillThread = new FillThread(*this); 264 m_fillThread = new FillThread(*this);
265 m_fillThread->start(); 265 m_fillThread->start();
266 } 266 }
267 267
268 #ifdef DEBUG_AUDIO_PLAY_SOURCE 268 #ifdef DEBUG_AUDIO_PLAY_SOURCE
269 cout << "AudioCallbackPlaySource::addModel: now have " << m_models.size() << " model(s) -- emitting modelReplaced" << endl; 269 cout << "AudioCallbackPlaySource::addModel: now have " << m_models.size() << " model(s)" << endl;
270 #endif 270 #endif
271
272 if (buffersChanged || srChanged) {
273 emit modelReplaced();
274 }
275 271
276 connect(model, SIGNAL(modelChangedWithin(sv_frame_t, sv_frame_t)), 272 connect(model, SIGNAL(modelChangedWithin(sv_frame_t, sv_frame_t)),
277 this, SLOT(modelChangedWithin(sv_frame_t, sv_frame_t))); 273 this, SLOT(modelChangedWithin(sv_frame_t, sv_frame_t)));
278 274
279 #ifdef DEBUG_AUDIO_PLAY_SOURCE 275 #ifdef DEBUG_AUDIO_PLAY_SOURCE