Re: [Live-devel] How to contribute code?

2010-06-24 Thread Ross Finlayson
Anyone can, of course, keep whatever version(s) of the code that they wish. However, we will continue to support the current version only. since they are of public domain. A slight correction in terminology here: This code is "open source"; not "public domain". -- Ross Finlayson Live Net

Re: [Live-devel] How to contribute code?

2010-06-24 Thread BONNEAU Guy
Jeremy, Since you already manage an open source project would you be available to setup and manage an open source public repository for live555. We could commit the sources as Ross release them since they are of public domain. I could offer some help if you want. Ross would only need to setup a

Re: [Live-devel] How to contribute code?

2010-06-24 Thread Jeremy Noring
On Mon, Jun 21, 2010 at 7:50 PM, Ross Finlayson wrote: > I don't use any revision control system myself. When I'm developing this > code, I use exactly two commands: "emacs" and "make". > > Each source code release - in "tar.gz" form - is less than 500 kBytes in > size. These days, that's not a

Re: [Live-devel] VLC can't decode MJPEG stream

2010-06-24 Thread Ross Finlayson
I set MAX_BUFFER_SIZE (256 * 1024) and OutPacketBuffer::maxSize = MAX_BUFFER_SIZE. But anyway I see that image sends in two parts. Resolution of image 640x480 and size 8544 bytes if I save it before rtsp-stream. But openRTSP captures files with 8.0K sizes. Why? When JPEG images are streamed via

[Live-devel] VLC can't decode MJPEG stream

2010-06-24 Thread Brilliantov Kirill Vladimirovich
I set MAX_BUFFER_SIZE (256 * 1024) and OutPacketBuffer::maxSize = MAX_BUFFER_SIZE. But anyway I see that image sends in two parts. Resolution of image 640x480 and size 8544 bytes if I save it before rtsp-stream. But openRTSP captures files with 8.0K sizes. Why? -- С уважением, Бриллиантов Кирилл

Re: [Live-devel] VLC can't decode MJPEG stream

2010-06-24 Thread Yuri Timenkov
You could try to analyze received frames with jpegsnoop utility (http://www.impulseadventure.com/photo/jpeg-snoop.html). It can help to understand what pieces of picture are missing/invalid. > -Original Message- > From: live-devel-boun...@ns.live555.com [mailto:live-devel- > boun...@ns.l

[Live-devel] VLC can't decode MJPEG stream

2010-06-24 Thread Brilliantov Kirill Vladimirovich
Hello Ross and thank you for your reply! I know that this isn't VLC maillist. I build RTSP-stream using live555 and I try to understand where I have error - in the capture, encode or streaming process. If I save data after encode, before streaming, I see correct color JPG. I have used your solut