From 5e5cd76b4d23b7820119cae25e15822e7fb84283 Mon Sep 17 00:00:00 2001 From: fgerlits Date: Wed, 1 Nov 2006 20:45:42 +0000 Subject: [PATCH] temporary pseudo-fix for #1898 --- .../src/products/gLiveSupport/src/GLiveSupport.cxx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx index 5f2b59c8b..1f2ee2f15 100644 --- a/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx +++ b/campcaster/src/products/gLiveSupport/src/GLiveSupport.cxx @@ -1172,12 +1172,18 @@ GLiveSupport :: playOutputAudio(Ptr::Ref playable) outputItemPlayingNow = acquireAudioClip(playable->getId()); outputPlayer->open(*outputItemPlayingNow->getUri()); outputPlayer->start(); + std::cerr << "gLiveSupport: Live Mode playing audio clip '" + << *playable->getTitle() + << "'" << std::endl; break; case Playable::PlaylistType: outputItemPlayingNow = acquirePlaylist(playable->getId()); outputPlayer->open(*outputItemPlayingNow->getUri()); outputPlayer->start(); + std::cerr << "gLiveSupport: Live Mode playing playlist '" + << *playable->getTitle() + << "'" << std::endl; break; default: // this never happens @@ -1291,12 +1297,18 @@ GLiveSupport :: playCueAudio(Ptr::Ref playable) cueItemPlayingNow = acquireAudioClip(playable->getId()); cuePlayer->open(*cueItemPlayingNow->getUri()); cuePlayer->start(); + std::cerr << "gLiveSupport: Cue playing audio clip '" + << *playable->getTitle() + << "'" << std::endl; break; case Playable::PlaylistType: cueItemPlayingNow = acquirePlaylist(playable->getId()); cuePlayer->open(*cueItemPlayingNow->getUri()); cuePlayer->start(); + std::cerr << "gLiveSupport: Cue playing playlist '" + << *playable->getTitle() + << "'" << std::endl; break; default: // this never happens