Re: [Live-devel] Trouble with Amino STB

2007-11-22 Thread Ross Finlayson
>I have a problem with AMINO STB. Note that the Amino STB is not our product. This is not the best mailing list to ask about problems with Amino products. >I have modified code In general, once you've modified the supplied code, you can't expect much help on this mailing list. Therefore, you

Re: [Live-devel] Restrictions

2007-11-22 Thread Ross Finlayson
>1. How to make session count restriction? You would need to modify the "RTSPServer" code to do this. > >2. How to deny access from listed IP-adresses? This is easy. Define your own subclass of "RTSPServer" that redefines the virtual function "specialClientAccessCheck()". That's what that fu

[Live-devel] working with MJPEG streams with frame width > 2040 (and even 2048) pixels.

2007-11-22 Thread Andrey Filippov
Ross, Some time ago we needed a patch to be able to receive MJPEG stream from our cameras (3MPix - 2048x1536) at that time. That was implemented and RTP width of 0 was treated as 2048. But sensors get bigger and the that is not enough anymore. Elphel cameras provide the frame size information in

[Live-devel] Restrictions

2007-11-22 Thread Анатолий Ремнев
Hi, all! May I asked once more? =) 1. How to make session count restriction? 2. How to deny access from listed IP-adresses? With best regards, Anatoliy ___ live-devel mailing list live-devel@lists.live555.com http://lists.live555.com/mailman/listinf

[Live-devel] Trouble with Amino STB

2007-11-22 Thread Анатолий Ремнев
Hi, all! I have a problem with AMINO STB. In original version of LiveMediaServer files are in the same folder that a exe-file. I have modified code of DynamicRTSPServer.cpp for read folder list form config.ini file and getting unique file from this folder list. cut h

Re: [Live-devel] MultiFrameRTPSource::doGetNextFrame1(): The total received frame size exceeds to buffer client ......

2007-11-22 Thread Ross Finlayson
As you can see in previous mail, my problem is only at the beginning received Jpeg frame. This is because the size of frame is more than 65535 and after that vlc auto adjust it. Yes, VLC is working correctly here. If you want to change the initial limit of 65535, you will need to modify VLC.

Re: [Live-devel] Lost consideration about SSM on Windows XP with VS6.

2007-11-22 Thread Ross Finlayson
>Do you mean according to RFC 2326 that an RTSP server should or must >explicitly specify whether the session is unicast or multicast (by >providing a multicast address) rather than give the client a chance >to choose either? Yes. It is always the server - not the client - that decides whether

Re: [Live-devel] Control RTP packets and size

2007-11-22 Thread cheung bonheur
Hello Ross, i try to send for example two packet RTP for one frame (image jpeg) ... Each packet has a size less than 64Ko and my frame has > 70ko How can i use Live to do that ? Before i use JPEGVideoSource class and i override this to send one packet rtp to one frame. I think the callback

Re: [Live-devel] live555MediaServer and RAW UDP streaming

2007-11-22 Thread Ross Finlayson
>Is it possible to make live555MediaServer stream with RAW UDP >datagrams, not with RTP? Yes, the server will do this already, but only for MPEG Transport Streams, and only if the client explicitly requests it (e.g., Amino set-top boxes, which support only raw UDP). Note that if you are develop

[Live-devel] MultiFrameRTPSource::doGetNextFrame1(): The total received frame size exceeds to buffer client ......

2007-11-22 Thread cheung bonheur
Hello Ross, As you can see in previous mail, my problem is only at the beginning received Jpeg frame. This is because the size of frame is more than 65535 and after that vlc auto adjust it. But it still the bugs randomly when you want open the video stream. The question is how can i fragment c

[Live-devel] FrameSize

2007-11-22 Thread cheung bonheur
Hello Ross, I found the probleme of crashing vlc! It is because my jpegframesource was too large for VLC ! VLC accept to stream without bugs when the jpegframesourcesize is least than 65535 bytes and i send 70916 bytes per frame! So i attempt to solve this trouble and i wish to know how can i s