======FramedSource类===============
个人理解,对于按照一帧一帧的输入给rtsp服务器的媒体源,应该继承FramedSource类。
当然,看起来FramedSource比较通用吧,还有专门的“帧源”的类,比如在MediaSource中,
就有几种不同的视频帧的源/jpeg源/音频源,FramedSource仅仅是其中之一。
MediaSource知道眼下自己支持这么几种源(她的子类了吧):
// Test for specific types of source:
virtual Boolean isFramedSource() const; //帧
virtual Boolean isRTPSource() const; //RTP
virtual Boolean isMPEG1or2VideoStreamFramer() const; //mpeg1和mpeg2 视频流帧
virtual Boolean isMP