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
>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
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
>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.
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