void ProtectionFilter::afterGettingFrame1(unsigned frameSize, struct timeval presentationTime)
{
        afterGetting(this);
}

All subclasses of "FrameSource" - when implementing the "doGetNextFrame()" virtual function - must set "fFrameSize". You should also set "fPresentationTime".

Therefore, change your "afterGettingFrame1()" function to:

void ProtectionFilter::afterGettingFrame1(unsigned frameSize, struct timeval presentationTime)
{
        fFrameSize = frameSize;
        fPresentationTime = presentationTime;
        afterGetting(this);
}
--

Ross Finlayson
Live Networks, Inc.
http://www.live555.com/
_______________________________________________
live-devel mailing list
live-devel@lists.live555.com
http://lists.live555.com/mailman/listinfo/live-devel

Reply via email to