Re: [Live-devel] Corruption of the heap and Access violation reading errors at testRTSPClient.cpp [ on windows platform ]

2012-03-26 Thread Novalis Vapuru
I read Faq, but it seems that I did not pay attention much. You are right. I modify the code , and it works perfectly . Thanks. Best Wishes Novalis PS: Here is the modified part: RTSPClient* rtspClient; EventTriggerId stopTrigger; UsageEnvironment* env; char doEventLoopWatchVariable; bool

[Live-devel] Corruption of the heap and Access violation reading errors at testRTSPClient.cpp [ on windows platform ]

2012-03-24 Thread Novalis Vapuru
Here is my a "little modified"  testRTSPClient.cpp [ Check  PS for full source code]. RTSPClient* rtspClient;// global handle void Start() { // Begin by setting up our usage environment: TaskScheduler* scheduler = BasicTaskScheduler::createNew(); UsageEnvironment* env = BasicUsageEnvironment::cr

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

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

2012-02-03 Thread Novalis Vapuru
How can I increase H264VideoRTPSink buffer size ? Novalis Best Wishes ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

[Live-devel] Custom FramedSource for testOnDemandRTSPServer Problem

2012-02-01 Thread Novalis Vapuru
Hi, I finally able to modify testOnDemandRTSPServer so that: It uses my custom FramedSource... Tests Test One: In order to test it: 1. I get video stream from h264 ip camera using OpenRTSPClient and write each Frame to a single file[ Boolean oneFilePerFrame = True] for 100

Re: [Live-devel] question about parseSPropParameterSets()

2012-01-31 Thread Novalis Vapuru
James, You can parse sprop parameters in order to get meaningfull stream info [ stream width, height etc] if you need. You can get details from here: http://stackoverflow.com/questions/6394874/fetching-the-dimensions-of-a-h264video-stream Best Wishes Novalis 2012/1/31 Ross Finlayson : > After

[Live-devel] How to create my custom FramedSource based on "DeviceSource" model.

2012-01-30 Thread Novalis Vapuru
I want to create my custom FramedSource based on "DeviceSource" model. Suppose that -- I have a shared global queue, call it IncomingQueue. -- IncomingQueue is FIFO queue. -- IncomingQueue.getNextFrame() -->return new Frame -- Frame.getData() return usigned char data -- Frama.getDataSize() re

Re: [Live-devel] How to to stream h264 encoded stream in a MP4 container with Live555

2012-01-30 Thread Novalis Vapuru
Well, I create a new class which is subclass of "OnDemandServerMediaSubsession" [ call it MyCustomServerMediaSubsession] which overrides the "createNewStreamSource()" and "createNewRTPSink()". methods. But the original code at testOnDemandRTSPSource for h264 is // A H.264 video elementary str

[Live-devel] How to to stream h264 encoded stream in a MP4 container with Live555

2012-01-30 Thread Novalis Vapuru
Hi, I want to stream .h264 encoded stream in a .MP4 container. So i investigate testOnRTSPServer.cpp example. Basically it can sucessfully stream h264 raw stream[ i used VLC as a client]. [ H265 raw stream file ] --input---> testOnRTSPServer I know how to get/extract h264 raw stream i

[Live-devel] Suggestions for RTSPClient [ testRTSPClient example]

2012-01-21 Thread Novalis Vapuru
As a user of your library, i have some problems with your RTSPClient while integrating it to my app. So i decide to write my "pains" and my "ideal" client example for testRTSPClient -- What i need to create client? Do i have to know "env" or "task scheduler? string rtspUrl = "rtsp:///video.h

Re: [Live-devel] Parser for sprop-parameter-sets at desribe response to get width- height...

2012-01-10 Thread Novalis Vapuru
Well, actually i do not decode h264 stream but just need width, height info... For h264 stream, here is simple buggy parser which gets width height from fSpropParameterSets... Maybe someone also need a starting point for parsing those data... Best Wishes How To Use: So in desribe response if

[Live-devel] Parser for sprop-parameter-sets at desribe response to get width- height...

2012-01-08 Thread Novalis Vapuru
Hi, I check video stream width height from subsession scs.subsession->videoHeight(), scs.subsession->videoHeight()... They give me right dimesions for server which desribe response include "a=x-dimensions:%d,%d", &width, &height)"... But they give wrong value ( 0) for server which does NOT i

Re: [Live-devel] Closing and deleting enviroment at the shutdownstream [ testRTSPClient and OpenRTSPClient]

2012-01-07 Thread Novalis Vapuru
Well, I make my test on testRTSPClient example It has method shutdownStream(RTSPClient* rtspClient, int exitCode) in which I delete exit(exitCode); statement and put env.reclaim() there but env.liveMediaPriv != NULL as I said before How to modify testRTSPClient example shutdownstream method

[Live-devel] Closing and deleting enviroment at the shutdownstream [ testRTSPClient and OpenRTSPClient]

2012-01-06 Thread Novalis Vapuru
Hi, I want to simply close and delete existing UsageEnvironment and shutdown method without "exit"... What I do so far is: 1. First : reclaim method env.reclaim(); but this does NOT delete the enviroment since env.liveMediaPriv != NULL... Of course i can set iveMediaPriv to NULL manually, b

Re: [Live-devel] How to disable RTCP timestamp calculations on single-stream sessions? [OpenRtspClient]

2011-12-25 Thread Novalis Vapuru
Thanks... You are right It is not a good idea to ignore RTCP corrections... I have no problem with viewing...I just push incoming streams [ since they are from real time ip camera ] to decoder than viewer, I can see the video Since my rtsp source is in real time i do not insert any time-stamp or

Re: [Live-devel] Presentaition time problem at H264 streams

2011-12-22 Thread Novalis Vapuru
Thanks Jeremy .. You are right...Fool me..I make the classic mistake... And this may cause my timestamp radical jumps...I will test it... Best Wishes 2011/12/22 Jeremy Noring : > On Sat, Dec 17, 2011 at 5:19 AM, 6.45 6.45.Vapuru <6.45.vap...@gmail.com> > wrote: >> >> Hi >> >> I modify the Open