[Live-devel] HD Frames

2007-12-14 Thread Ramon Martín de Pozuelo
Perfect. I changed it. Thank you very much Ross! Ramon ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinfo/live-devel

Re: [Live-devel] HD Frames

2007-12-13 Thread Ross Finlayson
>my application stopped at this point: > >MyH264VideoStreamFramer::doGetNextFrame(){ > > getPayload();// loading RTP payload information on >pszBuff > fMaxSize=100; There's your problem. "fMaxSize" is an 'in' parameter. It is specified by the downstream object, a

[Live-devel] HD Frames

2007-12-13 Thread Ramon Martín de Pozuelo
Hi Ross, my application stopped at this point: MyH264VideoStreamFramer::doGetNextFrame(){ getPayload();// loading RTP payload information on pszBuff fMaxSize=100; fFrameSize=frameSize; memcpy(fTo,pszBuff,fFrameSize); ... when frameSize is bigger

Re: [Live-devel] HD Frames

2007-12-12 Thread Ross Finlayson
>Hi all, >I am trying to send a HD H.264 video and I found a problem when the frame size >is bigger than unsigned range (0-65535 Huh? That's the range for "unsigned short", not "unsigned". Where specifically in the code are you having trouble? (I hope you're using our "H264VideoRTPSink" class.

[Live-devel] HD Frames

2007-12-12 Thread Ramon Martin de Pozuelo Genis
Hi all, I am trying to send a HD H.264 video and I found a problem when the frame size is bigger than unsigned range (0-65535) and I try to copy it to fTo pointer. First I thougt to change frameSize from unsigned to long, but error still apeared. I think it's not only a frameSize problem, so maxim