Re: [Live-devel] JPEG file over RTP

2010-06-28 Thread Ross Finlayson
The problem is that when I come to decode the stream in VLC the image is far blockier than the original. Why is this? What am I doing wrong? I don't know, in part because you're missing some details about your implementation. In particular, you didn't say anything about your implementation

Re: [Live-devel] mixed rtp payload

2010-06-28 Thread Ross Finlayson
m=data 0 RTP/AVP 111 a=rtpmap:111 octet-stream/1 a=fmtp:111 Mac=08007b885ad5; Model=VCC-HD2500P; TargetBitRate=900; FirmVer=0103; CameraSeries=2; Yes, this is something totally non-standard. However, I think you can receive this data by adding the command-line option "-S 0" to "openRTSP".

Re: [Live-devel] mixed rtp payload

2010-06-28 Thread Ross Finlayson
I used SetAuxReadHandler() for this purpose No, don't use "setAuxilliaryReadHandler()". That's a hack that should never have been in the code; it will be going away sometime. Instead, to receive the data from (otherwise) unknown RTP payload formats, pass a non-negative "useSpecialRTPoffset"

Re: [Live-devel] mixed rtp payload

2010-06-28 Thread kamildobk
>I have a network camera which sends rtp packed with payload = 100 (H264). >But the camera also sends some information in rtp packets with a different >payload type. >I believe these packets are discarded by live555, but is there a way to get >these packet in my application ? Hi, I used SetAuxRe

[Live-devel] JPEG file over RTP

2010-06-28 Thread Andy Bell
Hi All, I am wanting to stream a single JPEG file over RTP for test purposes, I load the file and then create a video source to stream it to a client, in this case VLC. I am using the following code on each frame: void TestJPEGVideoSource::doGetNextFrame() { fFrameSize = this->sosSize; if (

Re: [Live-devel] mixed rtp payload

2010-06-28 Thread Sébastien Escudier
Quoting Ross Finlayson : > Sebastien, > > Perhaps. Does the camera give you a SDP description for the stream? > (Does the camera support RTSP? If so, please run "openRTSP" on it, > and send us the (stderr) output.) Yes I think it does, I can see it in the sdp. Here is the output : Opening conn

Re: [Live-devel] mixed rtp payload

2010-06-28 Thread Ross Finlayson
I have a network camera which sends rtp packed with payload = 100 (H264). But the camera also sends some information in rtp packets with a different payload type. I believe these packets are discarded by live555, but is there a way to get these packet in my application ? Sebastien, Perhaps. Do

[Live-devel] mixed rtp payload

2010-06-28 Thread Sébastien Escudier
Hi, I have a network camera which sends rtp packed with payload = 100 (H264). But the camera also sends some information in rtp packets with a different payload type. I believe these packets are discarded by live555, but is there a way to get these packet in my application ? Regards, Sebastien