This repository was archived by the owner on Mar 26, 2023. It is now read-only.

Description
I use function addPixelBufferSource to add a watermark image, but sometimes I have to update this watermark image. It means that I have to remove the old one and add a new one. To remove the old watermark image, I have added a new function in at VCSimpleSession.mm
-(void) removePixelBufferSource {
m_videoMixer->unregisterSource(m_pixelBufferSource);
}
It does work.
However, sometimes it crash at GLESVideoMixer.h

Is it means that the "texture" is a wild pointer? I can not fix this problem even thought I have spent half of month, and I hope someone warm-hearted to help me.