<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">I think your problem is here:<div><br></div><div><div style="margin: 0px; font-size: 12px; font-family: Monaco; color: rgb(94, 52, 255);"><span style="color: #35a327">void</span><span style="color: #000000"> </span>triggerLive555Scheduler<span style="color: #000000">(</span><span style="color: #35a327">void</span><span style="color: #000000">) {</span></div><div style="margin: 0px; font-size: 12px; font-family: Monaco;"><span class="Apple-tab-span" style="white-space:pre"> </span>scheduler->triggerEvent(<span style="color: #71c2c1">WAVSource</span>::s_frameReceivedTrigger, sessionState.source);</div><div style="margin: 0px; font-size: 12px; font-family: Monaco; min-height: 16px;">}</div></div><div><br></div><div>The problem with this is the second parameter to "triggerEvent()".  It needs to be a pointer to a "WAVSource" object.  If you are streaming raw PCM audio, and inserting a "uLawFromPCMAudioSource" filter object in front of it, then "sessionState.source" will point to that filter object, which is the wrong thing to be passing to "triggerEvent()".</div><div><br></div><div>So, you should change the second parameter to be "wavSource".</div><br><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;  "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;  ">Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a></span></span>
</div>
<br></body></html>