Re: [Live-devel] Hardcoding SDP information

2012-02-06 Thread Ross Finlayson
> When RTSP server receives a DESCRIBE command, it generates the SDP by parsing > the source data. This depends upon the particular type of data - but for H.264, that's true, by default. > If description of the source is known, can the SDP can be hard-coded in > ServerMediaSession::generateS

Re: [Live-devel] How to increase H264VideoRTPSink buffer size ? [ fMaxSize]

2012-02-06 Thread Ross Finlayson
> Does not work in my case > Before I create custom OnDemandServerMediaSubsession objects(which > inherits from ServerMediaSubsession) i set to a high value > OutPacketBuffer::maxSize, but > at my custom FramedSource deliverFrame() method it still complain > that newFrameSize > fMaxSize .It seems t

[Live-devel] Hardcoding SDP information

2012-02-06 Thread Kumar Sambhav
Hi, When RTSP server receives a DESCRIBE command, it generates the SDP by parsing the source data. If description of the source is known, can the SDP can be hard-coded in ServerMediaSession::generateSDPDescription() ? Is there any dependency which has to be taken care if the SDP is hard-coded

Re: [Live-devel] RTSP Server in separate thread

2012-02-06 Thread Фазлеев Максим
In main.cpp  pthread_cond_t cond = PTHREAD_COND_INITIALIZER;pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;void *liveMedia(void *arg){    pthread_mutex_lock(&mutex);    H264VideoCamSource **videoSource = (H264VideoCamSource **) arg;    TaskScheduler* scheduler = BasicTaskScheduler::createNew(); 

Re: [Live-devel] How to increase H264VideoRTPSink buffer size ? [ fMaxSize]

2012-02-06 Thread Novalis Vapuru
Does not work in my case Before I create custom OnDemandServerMediaSubsession objects(which inherits from ServerMediaSubsession) i set to a high value OutPacketBuffer::maxSize, but at my custom FramedSource deliverFrame() method it still complain that newFrameSize > fMaxSize .It seems that this doe